HidControllerType.cs 348 B

1234567891011121314
  1. using System;
  2. namespace Ryujinx.HLE.Input
  3. {
  4. [Flags]
  5. public enum HidControllerType
  6. {
  7. ControllerType_ProController = (1 << 0),
  8. ControllerType_Handheld = (1 << 1),
  9. ControllerType_JoyconPair = (1 << 2),
  10. ControllerType_JoyconLeft = (1 << 3),
  11. ControllerType_JoyconRight = (1 << 4)
  12. }
  13. }