mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-11 14:27:13 +00:00
19 lines
560 B
C++
19 lines
560 B
C++
#pragma once
|
|
|
|
#include "TileItem.h"
|
|
|
|
class WoolTileItem : public TileItem {
|
|
public:
|
|
static const unsigned int COLOR_DESCS[];
|
|
static const unsigned int CARPET_COLOR_DESCS[];
|
|
static const unsigned int CLAY_COLOR_DESCS[];
|
|
static const unsigned int GLASS_COLOR_DESCS[];
|
|
static const unsigned int GLASS_PANE_COLOR_DESCS[];
|
|
|
|
WoolTileItem(int id);
|
|
|
|
virtual Icon* getIcon(int itemAuxValue);
|
|
virtual int getLevelDataForAuxValue(int auxValue);
|
|
virtual unsigned int getDescriptionId(
|
|
std::shared_ptr<ItemInstance> instance);
|
|
}; |