2026-03-01 12:16:08 +08:00
|
|
|
#pragma once
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
#include "TileItem.h"
|
|
|
|
|
|
2026-03-02 17:37:16 +07:00
|
|
|
class ClothTileItem : public TileItem
|
2026-03-01 12:16:08 +08:00
|
|
|
{
|
2026-03-02 17:37:16 +07:00
|
|
|
public:
|
2026-03-01 12:16:08 +08:00
|
|
|
static const unsigned int COLOR_DESCS[];
|
|
|
|
|
static const unsigned int CARPET_COLOR_DESCS[];
|
|
|
|
|
|
|
|
|
|
ClothTileItem(int id);
|
2026-03-02 17:37:16 +07:00
|
|
|
|
2026-03-01 12:16:08 +08:00
|
|
|
virtual Icon *getIcon(int itemAuxValue);
|
|
|
|
|
virtual int getLevelDataForAuxValue(int auxValue);
|
2026-03-02 17:37:16 +07:00
|
|
|
virtual unsigned int getDescriptionId(shared_ptr<ItemInstance> instance);
|
2026-03-01 12:16:08 +08:00
|
|
|
};
|