#ifndef ADVANCEMAPPARSER_H #define ADVANCEMAPPARSER_H #include #include #include class Project; class Layout; class Metatile; namespace AdvanceMapParser { Layout *parseLayout(const QString &filepath, bool *error, const Project *project); QList parseMetatiles(const QString &filepath, bool *error, bool primaryTileset); QList parsePalette(const QString &filepath, bool *error); }; #endif // ADVANCEMAPPARSER_H