reflex2q3/ReflexToQ3/includes/v8mapparser.hpp

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