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

#include <vector>
#include <type_traits>
#include "o3d/obj3d.h"
#include "o3d/camera.h"

namespace engine::o3d {

struct Scene {
    Camera camera;
    std::vector<Object3D> objs;
};

}

#endif // O3D_SCENE_H