1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#pragma once #include "types.hpp" namespace amalgine { class Vertex2D { public: f32 x; f32 y; }; class Vertex3D { public: f32 x; f32 y; f32 z; }; }