// This file is part of the 64k demo project. // It defines the Scene container. // Manages a collection of objects and lights. #pragma once #include "3d/object.h" #include class Scene { public: std::vector objects; // std::vector lights; // Future void add_object(const Object3D& obj) { objects.push_back(obj); } void clear() { objects.clear(); } };