mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-25 21:47:42 +02: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,
|
|
}
|
|
}
|