mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-28 00:27:58 +02:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
12 lines
416 B
C#
12 lines
416 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; }
|
|
}
|
|
}
|