blob: fc9d80434c956a28a5e9155f521be05a6ebd8f51 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
namespace Ryujinx.Input
{
/// <summary>
/// Represent a joystick from a gamepad.
/// </summary>
public enum StickInputId : byte
{
Unbound,
Left,
Right,
Count
}
}
|