NpadKeyboardLeft.cs 760 B

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