mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-18 12:32:54 +00:00
17 lines
356 B
C++
17 lines
356 B
C++
#pragma once
|
|
|
|
#include "TileItem.h"
|
|
|
|
class TreeTileItem : public TileItem {
|
|
private:
|
|
Tile* parentTile;
|
|
|
|
public:
|
|
TreeTileItem(int id, Tile* parentTile);
|
|
|
|
virtual Icon* getIcon(int itemAuxValue);
|
|
virtual int getLevelDataForAuxValue(int auxValue);
|
|
|
|
virtual unsigned int getDescriptionId(
|
|
std::shared_ptr<ItemInstance> instance);
|
|
}; |