1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-02-16 12:28:15 -06:00
darko1979 bed516bfda
Implement rotate stick 90 degrees clockwise ()
* Implement swapping sticks

* Rotate 90 degrees clockwise

Co-authored-by: matesic.darko@gmail.com <Darkman1979>
2022-03-12 18:23:48 +01:00

12 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; }
}
}