d254548548
* change hid sharedmem writing to use structures
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;
|
|
}
|
|
} |