mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-11 12:01:30 +00:00
18 lines
657 B
C#
18 lines
657 B
C#
namespace Ryujinx.Common.Configuration.Hid
|
|
{
|
|
public class 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; }
|
|
}
|
|
}
|