aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardInputMode.cs
blob: a75ef8cc65480e10d44e6c0ece5f4af570474d82 (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,
    }
}