blob: 4eec4c5a0f51b20cc6998ad212f53c83345ead4b (
plain) (
tree)
|
|
#pragma once
#include "ItemHandler.h"
#include "../World.h"
#include "../Player.h"
class cItemSwordHandler : public cItemHandler
{
public:
cItemSwordHandler(int a_ItemID)
: cItemHandler(a_ItemID)
{
}
virtual bool CanHarvestBlock(BLOCKTYPE a_BlockType) override
{
return a_BlockType == E_BLOCK_COBWEB;
}
};
|