aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Input
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/Input')
-rw-r--r--Ryujinx.HLE/Input/HidHotkeyButtons.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Ryujinx.HLE/Input/HidHotkeyButtons.cs b/Ryujinx.HLE/Input/HidHotkeyButtons.cs
new file mode 100644
index 00000000..7fa6ed6d
--- /dev/null
+++ b/Ryujinx.HLE/Input/HidHotkeyButtons.cs
@@ -0,0 +1,10 @@
+using System;
+
+namespace Ryujinx.HLE.Input
+{
+ [Flags]
+ public enum HidHotkeyButtons
+ {
+ ToggleVSync = 1 << 0,
+ }
+}