NpadControllerLeft.cs 630 B

123456789101112131415
  1. namespace Ryujinx.Common.Configuration.Hid
  2. {
  3. public struct NpadControllerLeft
  4. {
  5. public ControllerInputId Stick { get; set; }
  6. public ControllerInputId StickButton { get; set; }
  7. public ControllerInputId ButtonMinus { get; set; }
  8. public ControllerInputId ButtonL { get; set; }
  9. public ControllerInputId ButtonZl { get; set; }
  10. public ControllerInputId DPadUp { get; set; }
  11. public ControllerInputId DPadDown { get; set; }
  12. public ControllerInputId DPadLeft { get; set; }
  13. public ControllerInputId DPadRight { get; set; }
  14. }
  15. }