1
0
cuberite-2a/src/Items/ItemSword.h
2013-11-24 14:19:41 +00:00

31 lines
346 B
C++

#pragma once
#include "ItemHandler.h"
#include "../World.h"
#include "../Entities/Player.h"
class cItemSwordHandler :
public cItemHandler
{
public:
cItemSwordHandler(int a_ItemType)
: cItemHandler(a_ItemType)
{
}
virtual bool CanHarvestBlock(BLOCKTYPE a_BlockType) override
{
return (a_BlockType == E_BLOCK_COBWEB);
}
} ;