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