NpadKeyboardRight.cs 631 B

123456789101112131415161718
  1. namespace Ryujinx.Configuration.Hid
  2. {
  3. public struct NpadKeyboardRight
  4. {
  5. public Key StickUp { get; set; }
  6. public Key StickDown { get; set; }
  7. public Key StickLeft { get; set; }
  8. public Key StickRight { get; set; }
  9. public Key StickButton { get; set; }
  10. public Key ButtonA { get; set; }
  11. public Key ButtonB { get; set; }
  12. public Key ButtonX { get; set; }
  13. public Key ButtonY { get; set; }
  14. public Key ButtonPlus { get; set; }
  15. public Key ButtonR { get; set; }
  16. public Key ButtonZr { get; set; }
  17. }
  18. }