#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; }; }