0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-19 13:21:40 +00:00
ryujinx-fork/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
No EOL
127 B
C#

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