mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-03 12:54:22 +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);
|
|
}; |