goat3dgfx

view src/scene.h @ 0:1873dfd13f2d

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 14 Nov 2013 05:27:09 +0200
parents
children 1868c5975f31
line source
1 #ifndef SCENE_H_
2 #define SCENE_H_
4 #include <vector>
5 #include "object.h"
6 #include "curve.h"
8 class Scene {
9 public:
10 std::vector<Object*> objects;
11 std::vector<Mesh*> meshes;
12 std::vector<Curve*> curves;
14 ~Scene();
15 void destroy();
17 void draw(long msec = 0) const;
18 };
20 #endif // SCENE_H_