mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
14 lines
220 B
C#
14 lines
220 B
C#
namespace Ryujinx.Input
|
|
{
|
|
/// <summary>
|
|
/// Represent a joystick from a gamepad.
|
|
/// </summary>
|
|
public enum StickInputId : byte
|
|
{
|
|
Unbound,
|
|
Left,
|
|
Right,
|
|
|
|
Count,
|
|
}
|
|
}
|