JoyconConfigControllerStick.cs 411 B

1234567891011
  1. namespace Ryujinx.Common.Configuration.Hid.Controller
  2. {
  3. public class JoyconConfigControllerStick<Button, Stick> where Button: unmanaged where Stick: unmanaged
  4. {
  5. public Stick Joystick { get; set; }
  6. public bool InvertStickX { get; set; }
  7. public bool InvertStickY { get; set; }
  8. public bool Rotate90CW { get; set; }
  9. public Button StickButton { get; set; }
  10. }
  11. }