NpadKeyboardLeft.cs 445 B

123456789101112131415161718
  1. namespace Ryujinx.Configuration.Hid
  2. {
  3. public struct NpadKeyboardLeft
  4. {
  5. public Key StickUp;
  6. public Key StickDown;
  7. public Key StickLeft;
  8. public Key StickRight;
  9. public Key StickButton;
  10. public Key DPadUp;
  11. public Key DPadDown;
  12. public Key DPadLeft;
  13. public Key DPadRight;
  14. public Key ButtonMinus;
  15. public Key ButtonL;
  16. public Key ButtonZl;
  17. }
  18. }