KeyboardHotkeys.cs 308 B

1234567891011
  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. public Key ToggleMute { get; set; }
  10. }
  11. }