blob: aaa3ef1d9226c4ecba47a6452f7f40ac4820b02a (
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; }
}
}
|