mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-02 13:37:19 +01: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;
|
|
}
|
|
} |