HidControllerId.cs 394 B

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