blob: 869cff4fe782e510c48a1193d68f272a3f8e793b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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; }
}
}
|