diff options
Diffstat (limited to 'Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigController.cs')
| -rw-r--r-- | Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigController.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigController.cs b/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigController.cs new file mode 100644 index 00000000..832aae0d --- /dev/null +++ b/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigController.cs @@ -0,0 +1,22 @@ +namespace Ryujinx.Common.Configuration.Hid.Controller.Motion +{ + public class MotionConfigController + { + public MotionInputBackendType MotionBackend { get; set; } + + /// <summary> + /// Gyro Sensitivity + /// </summary> + public int Sensitivity { get; set; } + + /// <summary> + /// Gyro Deadzone + /// </summary> + public double GyroDeadzone { get; set; } + + /// <summary> + /// Enable Motion Controls + /// </summary> + public bool EnableMotion { get; set; } + } +} |
