#ifndef SCENE_H #define SCENE_H #include #include "object.hpp" class Scene { public: void addShape(const Shape *obj); std::vector objs; }; #endif