mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-29 05:57:43 +02:00
11 lines
No EOL
202 B
C#
11 lines
No EOL
202 B
C#
namespace Ryujinx.HLE.Input
|
|
{
|
|
public struct TouchPoint
|
|
{
|
|
public int X;
|
|
public int Y;
|
|
public int DiameterX;
|
|
public int DiameterY;
|
|
public int Angle;
|
|
}
|
|
} |