NpadControllerRight.cs 631 B

123456789101112131415
  1. namespace Ryujinx.Common.Configuration.Hid
  2. {
  3. public struct NpadControllerRight
  4. {
  5. public ControllerInputId Stick { get; set; }
  6. public ControllerInputId StickButton { get; set; }
  7. public ControllerInputId ButtonA { get; set; }
  8. public ControllerInputId ButtonB { get; set; }
  9. public ControllerInputId ButtonX { get; set; }
  10. public ControllerInputId ButtonY { get; set; }
  11. public ControllerInputId ButtonPlus { get; set; }
  12. public ControllerInputId ButtonR { get; set; }
  13. public ControllerInputId ButtonZr { get; set; }
  14. }
  15. }