aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Configuration/Hid/LeftJoyconCommonConfig.cs
blob: 4ae8907211701c25146ab6bc0bd5e7faae500c86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Ryujinx.Common.Configuration.Hid
{
    public class LeftJoyconCommonConfig<TButton>
    {
        public TButton ButtonMinus { get; set; }
        public TButton ButtonL { get; set; }
        public TButton ButtonZl { get; set; }
        public TButton ButtonSl { get; set; }
        public TButton ButtonSr { get; set; }
        public TButton DpadUp { get; set; }
        public TButton DpadDown { get; set; }
        public TButton DpadLeft { get; set; }
        public TButton DpadRight { get; set; }
    }
}