aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Configuration/Hid/KeyboardConfig.cs
blob: 7dfbcb87e12001615f5cc736681fd1db4dd0dd1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace Ryujinx.Common.Configuration.Hid
{
    public class KeyboardConfig : InputConfig
    {
        // DO NOT MODIFY
        public const uint AllKeyboardsIndex = 0;

        /// <summary>
        /// Left JoyCon Keyboard Bindings
        /// </summary>
        public NpadKeyboardLeft LeftJoycon { get; set; }

        /// <summary>
        /// Right JoyCon Keyboard Bindings
        /// </summary>
        public NpadKeyboardRight RightJoycon { get; set; }

        /// <summary>
        /// Hotkey Keyboard Bindings
        /// </summary>
        public KeyboardHotkeys Hotkeys { get; set; }
    }
}