KeyboardConfig.cs 607 B

1234567891011121314151617181920212223
  1. namespace Ryujinx.Common.Configuration.Hid
  2. {
  3. public class KeyboardConfig : InputConfig
  4. {
  5. // DO NOT MODIFY
  6. public const uint AllKeyboardsIndex = 0;
  7. /// <summary>
  8. /// Left JoyCon Keyboard Bindings
  9. /// </summary>
  10. public NpadKeyboardLeft LeftJoycon { get; set; }
  11. /// <summary>
  12. /// Right JoyCon Keyboard Bindings
  13. /// </summary>
  14. public NpadKeyboardRight RightJoycon { get; set; }
  15. /// <summary>
  16. /// Hotkey Keyboard Bindings
  17. /// </summary>
  18. public KeyboardHotkeys Hotkeys { get; set; }
  19. }
  20. }