aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Configuration/Hid/InputConfig.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Common/Configuration/Hid/InputConfig.cs')
-rw-r--r--Ryujinx.Common/Configuration/Hid/InputConfig.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Ryujinx.Common/Configuration/Hid/InputConfig.cs b/Ryujinx.Common/Configuration/Hid/InputConfig.cs
new file mode 100644
index 00000000..540506d5
--- /dev/null
+++ b/Ryujinx.Common/Configuration/Hid/InputConfig.cs
@@ -0,0 +1,20 @@
+namespace Ryujinx.Common.Configuration.Hid
+{
+ public class InputConfig
+ {
+ /// <summary>
+ /// Controller Device Index
+ /// </summary>
+ public int Index { get; set; }
+
+ /// <summary>
+ /// Controller's Type
+ /// </summary>
+ public ControllerType ControllerType { get; set; }
+
+ /// <summary>
+ /// Player's Index for the controller
+ /// </summary>
+ public PlayerIndex PlayerIndex { get; set; }
+ }
+} \ No newline at end of file