mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-12-20 07:45:08 -06:00
Little rewrite of HID input (#723)
* change hid sharedmem writing to use structures
This commit is contained in:
11
Ryujinx.HLE/Input/Touch/TouchPoint.cs
Normal file
11
Ryujinx.HLE/Input/Touch/TouchPoint.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace Ryujinx.HLE.Input
|
||||
{
|
||||
public struct TouchPoint
|
||||
{
|
||||
public int X;
|
||||
public int Y;
|
||||
public int DiameterX;
|
||||
public int DiameterY;
|
||||
public int Angle;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user