Ryujinx/Ryujinx.HLE/Input/HidControllerId.cs
2018-12-01 14:03:56 -06:00

16 lines
No EOL
394 B
C#

namespace Ryujinx.HLE.Input
{
public enum HidControllerId
{
ControllerPlayer1 = 0,
ControllerPlayer2 = 1,
ControllerPlayer3 = 2,
ControllerPlayer4 = 3,
ControllerPlayer5 = 4,
ControllerPlayer6 = 5,
ControllerPlayer7 = 6,
ControllerPlayer8 = 7,
ControllerHandheld = 8,
ControllerUnknown = 9
}
}