mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-12 14:07:15 +00:00
16 lines
266 B
C++
16 lines
266 B
C++
#pragma once
|
|
|
|
#include "TileItem.h"
|
|
|
|
class Tile;
|
|
|
|
class AuxDataTileItem : public TileItem {
|
|
private:
|
|
Tile* parentTile;
|
|
|
|
public:
|
|
AuxDataTileItem(int id, Tile* parentTile);
|
|
|
|
Icon* getIcon(int itemAuxValue);
|
|
int getLevelDataForAuxValue(int auxValue);
|
|
}; |