KeyboardConfig.cs 471 B

123456789101112131415161718
  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. }
  16. }