mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-21 17:45:44 -05:00
16 lines
287 B
C++
16 lines
287 B
C++
#pragma once
|
|
#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
|