Ryujinx/src/Ryujinx.Input/StickInputId.cs
2023-04-27 23:51:14 +02:00

15 lines
222 B
C#

namespace Ryujinx.Input
{
/// <summary>
/// Represent a joystick from a gamepad.
/// </summary>
public enum StickInputId : byte
{
Unbound,
Left,
Right,
Count
}
}