NpadControllerLeft.cs 924 B

1234567891011121314151617181920
  1. namespace Ryujinx.Common.Configuration.Hid
  2. {
  3. public struct NpadControllerLeft
  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 ButtonMinus { get; set; }
  11. public ControllerInputId ButtonL { get; set; }
  12. public ControllerInputId ButtonZl { get; set; }
  13. public ControllerInputId ButtonSl { get; set; }
  14. public ControllerInputId ButtonSr { get; set; }
  15. public ControllerInputId DPadUp { get; set; }
  16. public ControllerInputId DPadDown { get; set; }
  17. public ControllerInputId DPadLeft { get; set; }
  18. public ControllerInputId DPadRight { get; set; }
  19. }
  20. }