mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-19 05:15:55 +01:00
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
|
|
}
|
|
}
|