aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Configuration/Hid/KeyboardHotkeys.cs
blob: dd0d7c21051c604c37c760193c3ef3961c112c6b (plain)
1
2
3
4
5
6
7
8
9
10
namespace Ryujinx.Common.Configuration.Hid
{
    public struct KeyboardHotkeys
    {
        public Key ToggleVsync { get; set; }
        public Key Screenshot { get; set; }
        public Key ShowUi { get; set; }
        public Key Pause { get; set; }
    }
}