aboutsummaryrefslogtreecommitdiff
path: root/include/Vertex2D.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/Vertex2D.hpp')
-rw-r--r--include/Vertex2D.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/Vertex2D.hpp b/include/Vertex2D.hpp
new file mode 100644
index 0000000..de22cd9
--- /dev/null
+++ b/include/Vertex2D.hpp
@@ -0,0 +1,18 @@
+#pragma once
+
+#include "types.hpp"
+
+namespace amalgine
+{
+ class Vertex2D
+ {
+ public:
+ Vertex2D(f32 _x = 0.0f, f32 _y = 0.0f) : x(_x), y(_y)
+ {
+
+ }
+
+ f32 x;
+ f32 y;
+ };
+}