blob: 96ddf6c054733fb6ef34333564fcd47ecb28ba09 (
plain) (
tree)
|
|
#pragma once
#include "ItemHandler.h"
class cItemCauldronHandler : public cItemHandler
{
public:
cItemCauldronHandler(int a_ItemType)
: cItemHandler(a_ItemType)
{
}
virtual bool IsPlaceable() override
{
return true;
}
virtual BLOCKTYPE GetBlockType() override
{
return E_BLOCK_CAULDRON;
}
};
|