blob: 4f570d3f381877787d732f26452266c2c59bfe20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
{
/// <summary>
/// The intention of the user when they finish the interaction with the keyboard.
/// </summary>
enum KeyboardResult
{
NotSet = 0,
Accept = 1,
Cancel = 2,
}
}
|