diff options
Diffstat (limited to 'include/Vertex.hpp')
-rw-r--r-- | include/Vertex.hpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/Vertex.hpp b/include/Vertex.hpp index ab98d3b..3526d99 100644 --- a/include/Vertex.hpp +++ b/include/Vertex.hpp @@ -5,22 +5,12 @@ namespace amalgine { class Vertex2D { public: - Vertex2D(f32 _x = 0.0f, f32 _y = 0.0f) : x(_x), y(_y) - { - - } - f32 x; f32 y; }; class Vertex3D { public: - Vertex3D(f32 _x = 0.0f, f32 _y = 0.0f, f32 _z = 0.0f) : x(_x), y(_y), z(_z) - { - - } - f32 x; f32 y; f32 z; |