Ryujinx/Ryujinx.Common/Configuration/Hid/KeyboardHotkeys.cs
2023-03-02 23:22:05 -03:00

18 lines
658 B
C#

namespace Ryujinx.Common.Configuration.Hid
{
public struct KeyboardHotkeys
{
public Hotkey Exit { get; set; }
public Hotkey Pause { get; set; }
public Hotkey ResScaleUp { get; set; }
public Hotkey ResScaleDown { get; set; }
public Hotkey Screenshot { get; set; }
public Hotkey ShowUi { get; set; }
public Hotkey ToggleDockedMode { get; set; }
public Hotkey ToggleFullscreen { get; set; }
public Hotkey ToggleMute { get; set; }
public Hotkey ToggleVsync { get; set; }
public Hotkey VolumeUp { get; set; }
public Hotkey VolumeDown { get; set; }
}
}