mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-18 21:32:55 +00:00
16 lines
405 B
C++
16 lines
405 B
C++
#pragma once
|
|
|
|
#include "TileItem.h"
|
|
|
|
class ClothTileItem : public TileItem {
|
|
public:
|
|
static const unsigned int COLOR_DESCS[];
|
|
static const unsigned int CARPET_COLOR_DESCS[];
|
|
|
|
ClothTileItem(int id);
|
|
|
|
virtual Icon* getIcon(int itemAuxValue);
|
|
virtual int getLevelDataForAuxValue(int auxValue);
|
|
virtual unsigned int getDescriptionId(
|
|
std::shared_ptr<ItemInstance> instance);
|
|
}; |