diff options
Diffstat (limited to 'Ryujinx.Common/Configuration/Hid/Controller/JoyconConfigControllerStick.cs')
| -rw-r--r-- | Ryujinx.Common/Configuration/Hid/Controller/JoyconConfigControllerStick.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Ryujinx.Common/Configuration/Hid/Controller/JoyconConfigControllerStick.cs b/Ryujinx.Common/Configuration/Hid/Controller/JoyconConfigControllerStick.cs new file mode 100644 index 00000000..0a9ca9dd --- /dev/null +++ b/Ryujinx.Common/Configuration/Hid/Controller/JoyconConfigControllerStick.cs @@ -0,0 +1,10 @@ +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; } + } +} |
