From 761604f9e4815e8f4355637ebb46052314cbed86 Mon Sep 17 00:00:00 2001 From: vimene Date: Wed, 10 Dec 2025 20:40:42 +0100 Subject: renamed .h to .hpp --- src/o3d/vertex.hpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/o3d/vertex.hpp (limited to 'src/o3d/vertex.hpp') diff --git a/src/o3d/vertex.hpp b/src/o3d/vertex.hpp new file mode 100644 index 0000000..70fca7b --- /dev/null +++ b/src/o3d/vertex.hpp @@ -0,0 +1,19 @@ +#ifndef O3D_VERTEX_H +#define O3D_VERTEX_H + +#include "math/vector.hpp" +#include "o3d/vertex_data.hpp" + +namespace engine::o3d { + +using engine::math::Vector3, engine::math::Vector4; + +struct Vertex { + Vector4 vertex; + Vector3 normal; + VertexData data; +}; + +} + +#endif // O3D_VERTEX_H -- cgit v1.2.3