mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-08-04 04:41:57 +00:00
11 lines
202 B
C#
11 lines
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;
|
|
}
|
|
} |