mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-22 10:04:53 -05:00
17 lines
262 B
C++
17 lines
262 B
C++
#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
|