KeyboardHotkeys.cs 264 B

12345678910
  1. namespace Ryujinx.Common.Configuration.Hid
  2. {
  3. public struct KeyboardHotkeys
  4. {
  5. public Key ToggleVsync { get; set; }
  6. public Key Screenshot { get; set; }
  7. public Key ShowUi { get; set; }
  8. public Key Pause { get; set; }
  9. }
  10. }