1
0
cuberite-2a/source/Items/ItemSword.h
madmaxoft@gmail.com ea2ed2c918 Moved blockticking into blockhandler classes.
Also slightly refactored the variable / argument names (BlockID is deprecated, use BlockType instead)

git-svn-id: http://mc-server.googlecode.com/svn/trunk@921 0a769ca7-a7f5-676a-18bf-c427514a06d6
2012-10-03 08:52:11 +00:00

21 lines
340 B
C++

#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;
}
};