aboutsummaryrefslogtreecommitdiff
path: root/src/o3d/scene.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/o3d/scene.hpp')
-rw-r--r--src/o3d/scene.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/o3d/scene.hpp b/src/o3d/scene.hpp
new file mode 100644
index 0000000..65008ac
--- /dev/null
+++ b/src/o3d/scene.hpp
@@ -0,0 +1,18 @@
+#ifndef O3D_SCENE_H
+#define O3D_SCENE_H
+
+#include <vector>
+#include <type_traits>
+#include "o3d/obj3d.hpp"
+#include "o3d/camera.hpp"
+
+namespace engine::o3d {
+
+struct Scene {
+ Camera camera;
+ std::vector<Object3D> objs;
+};
+
+}
+
+#endif // O3D_SCENE_H