aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Configuration/Hid/NpadController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Common/Configuration/Hid/NpadController.cs')
-rw-r--r--Ryujinx.Common/Configuration/Hid/NpadController.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/Ryujinx.Common/Configuration/Hid/NpadController.cs b/Ryujinx.Common/Configuration/Hid/NpadController.cs
deleted file mode 100644
index 94b985d5..00000000
--- a/Ryujinx.Common/Configuration/Hid/NpadController.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-namespace Ryujinx.Common.Configuration.Hid
-{
- public class NpadController
- {
- /// <summary>
- /// Enables or disables controller support
- /// </summary>
- public bool Enabled { get; set; }
-
- /// <summary>
- /// Controller Device Index
- /// </summary>
- public int Index { get; set; }
-
- /// <summary>
- /// Controller Analog Stick Deadzone
- /// </summary>
- public float Deadzone { 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; }
- }
-}