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