summaryrefslogtreecommitdiff
path: root/inc/scene.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/scene.hpp')
-rw-r--r--inc/scene.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/inc/scene.hpp b/inc/scene.hpp
new file mode 100644
index 0000000..f84bcd7
--- /dev/null
+++ b/inc/scene.hpp
@@ -0,0 +1,20 @@
+#ifndef CANVAS_HPP
+#define CANVAS_HPP
+
+#include "mesh.hpp"
+#include "vector.hpp"
+#include <cstdint>
+
+class Scene {
+private:
+ usu::vector<Mesh> meshes;
+ std::uint32_t width;
+ std::uint32_t height;
+
+public:
+ Scene();
+
+ void render();
+};
+
+#endif // SCENE_HPP