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