aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardInputMode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardInputMode.cs')
-rw-r--r--Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardInputMode.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardInputMode.cs b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardInputMode.cs
new file mode 100644
index 00000000..681b9208
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardInputMode.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
+{
+ /// <summary>
+ /// Active input options set by the keyboard applet. These options allow keyboard
+ /// players to input text without conflicting with the controller mappings.
+ /// </summary>
+ enum KeyboardInputMode : uint
+ {
+ ControllerAndKeyboard,
+ KeyboardOnly,
+ ControllerOnly,
+ Count,
+ }
+}