goat3dgfx

view src/scene.h @ 9:25b911c7c35c

fixed some line endings fixed the cubemap2.jpg file in examples/cubemap/data which was resized improperly causing seams...
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 18 Nov 2013 04:10:19 +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_