aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardInputMode.cs
blob: 925d52f6fba1c570a1861a80a9f1f5fa44804f6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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,
    }
}