mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-30 18:02:59 +00:00
16 lines
417 B
C++
16 lines
417 B
C++
#pragma once
|
|
|
|
#include "TileItem.h"
|
|
|
|
// 4J Stu - Class brought forward from 12w36 to fix stacking problem with
|
|
// silverfish stones
|
|
|
|
class StoneMonsterTileItem : public TileItem {
|
|
public:
|
|
StoneMonsterTileItem(int id);
|
|
|
|
virtual int getLevelDataForAuxValue(int auxValue);
|
|
virtual Icon* getIcon(int itemAuxValue);
|
|
virtual unsigned int getDescriptionId(
|
|
std::shared_ptr<ItemInstance> instance);
|
|
}; |