diff options
Diffstat (limited to 'Ryujinx.Common/Configuration/Hid/ControllerConfig.cs')
| -rw-r--r-- | Ryujinx.Common/Configuration/Hid/ControllerConfig.cs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Ryujinx.Common/Configuration/Hid/ControllerConfig.cs b/Ryujinx.Common/Configuration/Hid/ControllerConfig.cs new file mode 100644 index 00000000..3e414055 --- /dev/null +++ b/Ryujinx.Common/Configuration/Hid/ControllerConfig.cs @@ -0,0 +1,30 @@ +namespace Ryujinx.Common.Configuration.Hid +{ + public class ControllerConfig : InputConfig + { + /// <summary> + /// Controller Left Analog Stick Deadzone + /// </summary> + public float DeadzoneLeft { get; set; } + + /// <summary> + /// Controller Right Analog Stick Deadzone + /// </summary> + public float DeadzoneRight { get; set; } + + /// <summary> + /// Controller Trigger Threshold + /// </summary> + public float TriggerThreshold { get; set; } + + /// <summary> + /// Left JoyCon Controller Bindings + /// </summary> + public NpadControllerLeft LeftJoycon { get; set; } + + /// <summary> + /// Right JoyCon Controller Bindings + /// </summary> + public NpadControllerRight RightJoycon { get; set; } + } +}
\ No newline at end of file |
