2018-09-23 00:47:28 +01:00
|
|
|
#ifndef METATILE_H
|
|
|
|
#define METATILE_H
|
|
|
|
|
|
|
|
#include "tile.h"
|
|
|
|
#include <QImage>
|
|
|
|
|
|
|
|
class Metatile
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Metatile();
|
|
|
|
public:
|
|
|
|
QList<Tile> *tiles = nullptr;
|
2018-10-03 01:01:09 +01:00
|
|
|
uint8_t behavior;
|
|
|
|
uint8_t layerType;
|
2018-09-23 00:47:28 +01:00
|
|
|
|
|
|
|
static int getBlockIndex(int);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // METATILE_H
|