[go: up one dir, main page]

Menu

[r22]: / CLevelLoader.h  Maximize  Restore  History

Download this file

21 lines (16 with data), 338 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _CLEVELLOADER_H_
#define _CLEVELLOADER_H_
struct SLevelInfo {
char title[256];
};
class CLevelLoader {
public:
CLevelLoader(IrrlichtDevice* dev, CLog* logger, const char mapname[128]);
~CLevelLoader();
char name[128];
SLevelInfo info;
private:
IrrlichtDevice* device;
CLog* log;
};
#endif