#ifndef VERTEX_H #define VERTEX_H #include "common/math/Vector.h" struct Vertex final { Vertex(); Vertex(const Vector3& position, const Vector2& texture); Vector3 position; Vector2 texture; }; #endif