1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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