mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-29 13:06:24 +02:00
11 lines
411 B
C#
11 lines
411 B
C#
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 bool Rotate90CW { get; set; }
|
|
public Button StickButton { get; set; }
|
|
}
|
|
}
|