aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardResult.cs
blob: dc39feb87ca194a67d446dc152014ceb06ae73d6 (plain) (blame)
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,
    }
}