Ryujinx/Ryujinx.HLE/Input/HidJoystickPosition.cs
emmauss dc02ac08ca Support other switch controller types (#487)
* Make controllers modular, support changing controller type

* return readable events

* signal hid events

* fix style
2018-11-20 01:01:36 +01:00

8 lines
127 B
C#

namespace Ryujinx.HLE.Input
{
public struct HidJoystickPosition
{
public int DX;
public int DY;
}
}