aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Configuration/Hid/KeyboardHotkeys.cs
blob: a6f69e8d15b813298cf57aea73b23b42b778c013 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Ryujinx.Common.Configuration.Hid
{
    public class KeyboardHotkeys
    {
        public Key ToggleVsync { get; set; }
        public Key Screenshot { get; set; }
        public Key ShowUi { get; set; }
        public Key Pause { get; set; }
        public Key ToggleMute { get; set; }
        public Key ResScaleUp { get; set; }
        public Key ResScaleDown { get; set; }
    }
}