15 lines
222 B
C#
15 lines
222 B
C#
|
namespace Ryujinx.Input
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Represent a joystick from a gamepad.
|
|||
|
/// </summary>
|
|||
|
public enum StickInputId : byte
|
|||
|
{
|
|||
|
Unbound,
|
|||
|
Left,
|
|||
|
Right,
|
|||
|
|
|||
|
Count
|
|||
|
}
|
|||
|
}
|