bloboland

view src/level.h @ 1:cfe68befb7cc

some progress
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 15 Dec 2012 23:43:03 +0200
parents
children 9021a906c5d3
line source
1 #ifndef LEVEL_H_
2 #define LEVEL_H_
4 #include <vector>
5 #include "volume.h"
7 class Level {
8 public:
9 Volume *terrain;
10 std::vector<Vector3> blobs;
12 Level();
13 ~Level();
15 void generate();
17 bool load(const char *fname);
18 bool save(const char *fname) const;
19 };
21 #endif // LEVEL_H_