diff options
Diffstat (limited to 'src/scene.hpp')
-rw-r--r-- | src/scene.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/scene.hpp b/src/scene.hpp new file mode 100644 index 0000000..6e3f33e --- /dev/null +++ b/src/scene.hpp @@ -0,0 +1,15 @@ +#ifndef SCENE_H +#define SCENE_H + +#include <vector> +#include "object.hpp" + +class Scene { + public: + void addObject(Object obj); + + std::vector<Object> objs; + +}; + +#endif |