aboutsummaryrefslogtreecommitdiff
path: root/src/o3d/scene.hpp
blob: bdac1226a363c6c12913870f822663d70b282701 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef O3D_SCENE_HPP
#define O3D_SCENE_HPP

#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_HPP