NpadKeyboardRight.cs 761 B

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