951700fdd8
* Removed unused usings. * Added back using, now that it's used. * Removed extra whitespace.
12 lines
No EOL
276 B
C#
12 lines
No EOL
276 B
C#
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,
|
|
}
|
|
} |