/ src / Ryujinx.Common / Configuration / Hid / GenericInputConfigurationCommon.cs
GenericInputConfigurationCommon.cs
 1  namespace Ryujinx.Common.Configuration.Hid
 2  {
 3      public class GenericInputConfigurationCommon<TButton> : InputConfig where TButton : unmanaged
 4      {
 5          /// <summary>
 6          /// Left JoyCon Controller Bindings
 7          /// </summary>
 8          public LeftJoyconCommonConfig<TButton> LeftJoycon { get; set; }
 9  
10          /// <summary>
11          /// Right JoyCon Controller Bindings
12          /// </summary>
13          public RightJoyconCommonConfig<TButton> RightJoycon { get; set; }
14      }
15  }