mirror of
https://github.com/huderlem/porymap.git
synced 2026-08-23 17:16:17 -05:00
Add ability to import metatiles from Advance Map (.bvd files)
This commit is contained in:
15
include/core/metatileparser.h
Normal file
15
include/core/metatileparser.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef METATILEPARSER_H
|
||||
#define METATILEPARSER_H
|
||||
|
||||
#include "metatile.h"
|
||||
#include <QList>
|
||||
#include <QString>
|
||||
|
||||
class MetatileParser
|
||||
{
|
||||
public:
|
||||
MetatileParser();
|
||||
QList<Metatile*> *parse(QString filepath, bool *error, bool primaryTileset);
|
||||
};
|
||||
|
||||
#endif // METATILEPARSER_H
|
||||
Reference in New Issue
Block a user