aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Hid/HidControllerType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/Hid/HidControllerType.cs')
-rw-r--r--Ryujinx.HLE/Hid/HidControllerType.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Ryujinx.HLE/Hid/HidControllerType.cs b/Ryujinx.HLE/Hid/HidControllerType.cs
new file mode 100644
index 00000000..ea8ddfd4
--- /dev/null
+++ b/Ryujinx.HLE/Hid/HidControllerType.cs
@@ -0,0 +1,14 @@
+using System;
+
+namespace Ryujinx.HLE.Input
+{
+ [Flags]
+ public enum HidControllerType
+ {
+ ControllerType_ProController = (1 << 0),
+ ControllerType_Handheld = (1 << 1),
+ ControllerType_JoyconPair = (1 << 2),
+ ControllerType_JoyconLeft = (1 << 3),
+ ControllerType_JoyconRight = (1 << 4)
+ }
+} \ No newline at end of file