Add Import Map from Advance Map 1.92 feature.

This commit is contained in:
ultima-soul
2020-09-19 12:05:27 -07:00
parent 457cd1bb85
commit 38e7951f3e
10 changed files with 332 additions and 44 deletions

16
include/core/mapparser.h Normal file
View File

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