aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Configuration/Hid/Keyboard/JoyconConfigKeyboardStick.cs
blob: cadc17e82fa1511ea938267d95927b8916e8015e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace Ryujinx.Common.Configuration.Hid.Keyboard
{
    public class JoyconConfigKeyboardStick<Key> where Key: unmanaged
    {
        public Key StickUp { get; set; }
        public Key StickDown { get; set; }
        public Key StickLeft { get; set; }
        public Key StickRight { get; set; }
        public Key StickButton { get; set; }
    }
}