aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Configuration/Hid/RightJoyconCommonConfig.cs
blob: ca2d017673fb5004968f72cf4fad3ba97b7a0218 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Ryujinx.Common.Configuration.Hid
{
    public class RightJoyconCommonConfig<Button>
    {
        public Button ButtonPlus { get; set; }
        public Button ButtonR { get; set; }
        public Button ButtonZr { get; set; }
        public Button ButtonSl { get; set; }
        public Button ButtonSr { get; set; }
        public Button ButtonX { get; set; }
        public Button ButtonB { get; set; }
        public Button ButtonY { get; set; }
        public Button ButtonA { get; set; }
    }
}