1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef O3D_SCENE_H #define O3D_SCENE_H #include <vector> #include <type_traits> #include "o3d/obj3d.h" #include "o3d/camera.h" namespace engine::o3d { struct Scene { Camera camera; std::vector<Object3D> objs; }; } #endif // O3D_SCENE_H