NpadControllerRight.cs 925 B

1234567891011121314151617181920
  1. namespace Ryujinx.Common.Configuration.Hid
  2. {
  3. public struct NpadControllerRight
  4. {
  5. public ControllerInputId StickX { get; set; }
  6. public bool InvertStickX { get; set; }
  7. public ControllerInputId StickY { get; set; }
  8. public bool InvertStickY { get; set; }
  9. public ControllerInputId StickButton { get; set; }
  10. public ControllerInputId ButtonA { get; set; }
  11. public ControllerInputId ButtonB { get; set; }
  12. public ControllerInputId ButtonX { get; set; }
  13. public ControllerInputId ButtonY { get; set; }
  14. public ControllerInputId ButtonPlus { get; set; }
  15. public ControllerInputId ButtonR { get; set; }
  16. public ControllerInputId ButtonZr { get; set; }
  17. public ControllerInputId ButtonSl { get; set; }
  18. public ControllerInputId ButtonSr { get; set; }
  19. }
  20. }