KeyboardResult.cs 291 B

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