aboutsummaryrefslogtreecommitdiff
path: root/src/scene.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/scene.hpp')
-rw-r--r--src/scene.hpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/scene.hpp b/src/scene.hpp
deleted file mode 100644
index f270409..0000000
--- a/src/scene.hpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef SCENE_H
-#define SCENE_H
-
-#include <vector>
-#include "object.hpp"
-
-class Scene {
- public:
- void addShape(const Shape *obj);
-
- std::vector<const Shape*> objs;
-
-};
-
-#endif