1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef O3D_OBJ3D_H #define O3D_OBJ3D_H #include <type_traits> #include "math/tform.h" #include "o3d/mesh.h" namespace engine::o3d { struct Object3D { Mesh mesh; math::Transform transform; }; } #endif // O3D_OBJ3D_H