aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Input/StickInputId.cs
blob: fa2113ec5392309143509dc7ec8237e12df77e82 (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,
    }
}