mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-22 01:54:46 -05:00
13 lines
241 B
C++
13 lines
241 B
C++
#pragma once
|
|
#ifndef METATILEPARSER_H
|
|
#define METATILEPARSER_H
|
|
|
|
#include "metatile.h"
|
|
#include <QList>
|
|
|
|
namespace MetatileParser {
|
|
QList<Metatile*> parse(QString filepath, bool *error, bool primaryTileset);
|
|
}
|
|
|
|
#endif // METATILEPARSER_H
|