mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-26 21:37:44 +02:00

* 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;
|
|
}
|
|
} |