mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:28:49 +00:00
14 lines
291 B
C#
14 lines
291 B
C#
|
using System;
|
|||
|
|
|||
|
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,
|
|||
|
}
|
|||
|
}
|