mirror of
https://github.com/Ryujinx-NX/Ryujinx.git
synced 2024-11-15 05:27:42 -07:00
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;
|
|
}
|
|
} |