17 lines
203 B
C
17 lines
203 B
C
|
#ifndef METATILE_H
|
||
|
#define METATILE_H
|
||
|
|
||
|
#include "tile.h"
|
||
|
#include <QList>
|
||
|
|
||
|
class Metatile
|
||
|
{
|
||
|
public:
|
||
|
Metatile();
|
||
|
public:
|
||
|
QList<Tile> *tiles;
|
||
|
int attr;
|
||
|
};
|
||
|
|
||
|
#endif // METATILE_H
|