mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-16 01:55:27 +00:00
11 lines
366 B
C#
11 lines
366 B
C#
|
namespace Ryujinx.Common.Configuration.Hid.Controller
|
|||
|
{
|
|||
|
public class JoyconConfigControllerStick<Button, Stick> where Button: unmanaged where Stick: unmanaged
|
|||
|
{
|
|||
|
public Stick Joystick { get; set; }
|
|||
|
public bool InvertStickX { get; set; }
|
|||
|
public bool InvertStickY { get; set; }
|
|||
|
public Button StickButton { get; set; }
|
|||
|
}
|
|||
|
}
|