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>
|
|
|
|
|
2021-02-18 08:38:34 +00:00
|
|
|
namespace MetatileParser {
|
2021-02-17 02:45:54 +00:00
|
|
|
QList<Metatile*> parse(QString filepath, bool *error, bool primaryTileset);
|
2021-02-18 08:38:34 +00:00
|
|
|
}
|
2019-01-09 00:04:41 +00:00
|
|
|
|
|
|
|
#endif // METATILEPARSER_H
|