NpadKeyboardRight.cs 442 B

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