dc02ac08ca
* Make controllers modular, support changing controller type * return readable events * signal hid events * fix style
11 lines
No EOL
205 B
C#
11 lines
No EOL
205 B
C#
namespace Ryujinx.HLE.Input
|
|
{
|
|
public struct HidTouchPoint
|
|
{
|
|
public int X;
|
|
public int Y;
|
|
public int DiameterX;
|
|
public int DiameterY;
|
|
public int Angle;
|
|
}
|
|
} |