#include "o3d/scene.h" #include #include "o3d/camera.h" #include "o3d/obj3d.h" using namespace engine::o3d; Scene::Scene(Camera camera, std::vector objs) : camera{camera}, objs{objs} { this->camera.scene = this; for (auto& obj : this->objs) obj.scene = this; }