mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-23 22:29:44 -06:00
14 lines
434 B
C#
14 lines
434 B
C#
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; }
|
|
}
|
|
}
|