NpadKeyboardLeft.cs 630 B

123456789101112131415161718
  1. namespace Ryujinx.Configuration.Hid
  2. {
  3. public struct NpadKeyboardLeft
  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 DPadUp { get; set; }
  11. public Key DPadDown { get; set; }
  12. public Key DPadLeft { get; set; }
  13. public Key DPadRight { get; set; }
  14. public Key ButtonMinus { get; set; }
  15. public Key ButtonL { get; set; }
  16. public Key ButtonZl { get; set; }
  17. }
  18. }