aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Configuration/Hid/NpadController.cs
diff options
context:
space:
mode:
authorXpl0itR <xpl0itr@outlook.com>2020-05-03 03:00:53 +0100
committerGitHub <noreply@github.com>2020-05-03 04:00:53 +0200
commit538fba826b75cdd2feffaeac684044246590cb29 (patch)
tree4f9b09aaaeec6249b49d665012dd4e585f3e67f0 /Ryujinx.Common/Configuration/Hid/NpadController.cs
parent5f3558fd51a0920966e5341101c4233a02c98307 (diff)
Improvements to input and input configuration in the GUI. (#849)
* Improvements to input and input configuration in the GUI * Requested changes * nits * more nits
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; }
- }
-}