porymap/include/core/mapparser.h

16 lines
259 B
C++

#ifndef MAPPARSER_H
#define MAPPARSER_H
#include "maplayout.h"
#include "project.h"
#include <QList>
#include <QString>
class MapParser
{
public:
MapParser();
Layout *parse(QString filepath, bool *error, Project *project);
};
#endif // MAPPARSER_H