aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardResult.cs
blob: de112f548262f793f8993438ebc4cc96e95b9222 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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,
    }
}