KeyboardHotkeys.cs 225 B

123456789
  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. }
  9. }