diff options
Diffstat (limited to 'src/o3d/scene.h')
-rw-r--r-- | src/o3d/scene.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/o3d/scene.h b/src/o3d/scene.h new file mode 100644 index 0000000..3759cfb --- /dev/null +++ b/src/o3d/scene.h @@ -0,0 +1,20 @@ +#ifndef O3D_SCENE_H +#define O3D_SCENE_H + +#include <vector> +#include "o3d/obj3d.h" +#include "o3d/camera.h" + +namespace engine::o3d { + +class Scene { + public: + Camera camera; + std::vector<Object3D> objs; + + Scene(Camera camera, std::vector<Object3D> objs); +}; + +} + +#endif // O3D_SCENE_H |