stratgame

view level/src/level.h @ 0:86b53f76899f

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 21 May 2012 19:07:40 +0300
parents
children 369b51c9e4a8
line source
1 #ifndef LEVEL_H_
2 #define LEVEL_H_
4 #include "tinyxml2.h"
6 class Level {
7 private:
8 tinyxml2::XMLDocument xml;
10 public:
11 Level();
12 ~Level();
14 bool load(const char *fname);
15 };
17 class Map {
18 public:
19 bool load(tinyxml2::XMLNode *xml);
20 };
22 #endif // LEVEL_H_