2020-09-13 23:37:55 +01:00
|
|
|
#pragma once
|
2019-01-09 00:04:41 +00:00
|
|
|
#ifndef METATILEPARSER_H
|
|
|
|
#define METATILEPARSER_H
|
|
|
|
|
|
|
|
#include "metatile.h"
|
|
|
|
#include <QList>
|
|
|
|
#include <QString>
|
|
|
|
|
2021-02-18 00:20:14 +00:00
|
|
|
class MetatileParser {
|
2019-01-09 00:04:41 +00:00
|
|
|
public:
|
|
|
|
MetatileParser();
|
2021-02-18 00:20:14 +00:00
|
|
|
QList<Metatile*> parse(QString filepath, bool* error, bool primaryTileset);
|
2019-01-09 00:04:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // METATILEPARSER_H
|