1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef O3D_VERTEX_HPP #define O3D_VERTEX_HPP #include "math/vector.hpp" namespace engine::o3d { struct Vertex { engine::math::Vector4 vertex; engine::math::Vector3 normal; engine::math::Vector2 uv; }; } #endif // O3D_VERTEX_HPP