mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-21 17:45:44 -05:00
17 lines
210 B
C++
Executable File
17 lines
210 B
C++
Executable File
#ifndef METATILE_H
|
|
#define METATILE_H
|
|
|
|
#include "tile.h"
|
|
#include <QList>
|
|
|
|
class Metatile
|
|
{
|
|
public:
|
|
Metatile();
|
|
public:
|
|
QList<Tile> *tiles = NULL;
|
|
int attr;
|
|
};
|
|
|
|
#endif // METATILE_H
|