20 lines
337 B
C++
20 lines
337 B
C++
|
#ifndef __V8MAPPARSER_HPP__
|
||
|
#define __V8MAPPARSER_HPP__
|
||
|
|
||
|
#include "v6mapparser.hpp"
|
||
|
|
||
|
#define KEYWORD_GLOBAL "global"
|
||
|
#define KEYWORD_PREFAB "prefab"
|
||
|
|
||
|
class V8MapParser : public V6MapParser {
|
||
|
public:
|
||
|
const bool LoadMap(const char *);
|
||
|
|
||
|
protected:
|
||
|
EParserState ParsePrefab(const std::string);
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|