KeyboardConfig.cs 532 B

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