diff options
Diffstat (limited to 'Ryujinx.HLE/Input/Touch/TouchPoint.cs')
-rw-r--r-- | Ryujinx.HLE/Input/Touch/TouchPoint.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Ryujinx.HLE/Input/Touch/TouchPoint.cs b/Ryujinx.HLE/Input/Touch/TouchPoint.cs new file mode 100644 index 00000000..a9b095de --- /dev/null +++ b/Ryujinx.HLE/Input/Touch/TouchPoint.cs @@ -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; + } +}
\ No newline at end of file |