aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InvalidButtonFlags.cs
blob: 1166e81dd15d43b19388ea5565739c1aa88295a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
{
    /// <summary>
    /// Identifies prohibited buttons.
    /// </summary>
    [Flags]
    enum InvalidButtonFlags : uint
    {
        None         = 0,
        AnalogStickL = 1 << 1,
        AnalogStickR = 1 << 2,
        ZL           = 1 << 3,
        ZR           = 1 << 4,
    }
}