#ifndef O3D_OBJ3D_HPP #define O3D_OBJ3D_HPP #include #include "math/tform.hpp" #include "o3d/mesh.hpp" namespace engine::o3d { struct Object3D { Mesh mesh; math::Transform transform; }; } #endif // O3D_OBJ3D_HPP