mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-09-27 23:01:56 +00: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
|
|
}
|
|
}
|