mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-20 17:51:13 +02:00
* Make controllers modular, support changing controller type * return readable events * signal hid events * fix style
11 lines
205 B
C#
11 lines
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;
|
|
}
|
|
} |