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