mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-12 05:37:13 +00:00
15 lines
387 B
C++
15 lines
387 B
C++
#pragma once
|
|
|
|
#include "TileItem.h"
|
|
|
|
class SaplingTileItem : public TileItem {
|
|
public:
|
|
SaplingTileItem(int id);
|
|
|
|
virtual int getLevelDataForAuxValue(int auxValue);
|
|
virtual Icon* getIcon(int itemAuxValue);
|
|
|
|
// 4J brought forward to have unique names for different sapling types
|
|
virtual unsigned int getDescriptionId(
|
|
std::shared_ptr<ItemInstance> instance);
|
|
}; |