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