/ src / Ryujinx.Common / Configuration / Hid / Controller / JoyconConfigControllerStick.cs
JoyconConfigControllerStick.cs
 1  namespace Ryujinx.Common.Configuration.Hid.Controller
 2  {
 3      public class JoyconConfigControllerStick<TButton, TStick> where TButton : unmanaged where TStick : unmanaged
 4      {
 5          public TStick Joystick { get; set; }
 6          public bool InvertStickX { get; set; }
 7          public bool InvertStickY { get; set; }
 8          public bool Rotate90CW { get; set; }
 9          public TButton StickButton { get; set; }
10      }
11  }