aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Input/StickInputId.cs
blob: 94c0f25e8d6fc725e878c64b2424f3694976a5ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.Input
{
    /// <summary>
    /// Represent a joystick from a gamepad.
    /// </summary>
    public enum StickInputId : byte
    {
        Unbound,
        Left,
        Right,

        Count,
    }
}