mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-07-02 17:00:47 -07:00
Support other switch controller types (#487)
* Make controllers modular, support changing controller type * return readable events * signal hid events * fix style
This commit is contained in:
11
Ryujinx.HLE/Input/HidTouchPoint.cs
Normal file
11
Ryujinx.HLE/Input/HidTouchPoint.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace Ryujinx.HLE.Input
|
||||
{
|
||||
public struct HidTouchPoint
|
||||
{
|
||||
public int X;
|
||||
public int Y;
|
||||
public int DiameterX;
|
||||
public int DiameterY;
|
||||
public int Angle;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user