diff options
Diffstat (limited to 'Xamarin.Forms.Core/Vec2.cs')
-rw-r--r-- | Xamarin.Forms.Core/Vec2.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/Vec2.cs b/Xamarin.Forms.Core/Vec2.cs new file mode 100644 index 00000000..2c7512d3 --- /dev/null +++ b/Xamarin.Forms.Core/Vec2.cs @@ -0,0 +1,14 @@ +namespace Xamarin.Forms +{ + public struct Vec2 + { + public double X; + public double Y; + + public Vec2(double x, double y) + { + X = x; + Y = y; + } + } +}
\ No newline at end of file |