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