2022-08-18 18:04:54 +02:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
|
2021-10-12 21:54:21 +02:00
|
|
|
|
{
|
|
|
|
|
/// <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,
|
|
|
|
|
}
|
|
|
|
|
}
|