86a991c5a8
git-svn-id: http://mc-server.googlecode.com/svn/trunk@677 0a769ca7-a7f5-676a-18bf-c427514a06d6
19 lines
327 B
C++
19 lines
327 B
C++
#pragma once
|
|
#include "Item.h"
|
|
#include "../cWorld.h"
|
|
#include "../cPlayer.h"
|
|
|
|
class cItemSwordHandler : public cItemHandler
|
|
{
|
|
public:
|
|
cItemSwordHandler(int a_ItemID)
|
|
: cItemHandler(a_ItemID)
|
|
{
|
|
|
|
}
|
|
|
|
virtual bool CanHarvestBlock(BLOCKTYPE a_BlockID) override
|
|
{
|
|
return a_BlockID == E_BLOCK_COBWEB;
|
|
}
|
|
}; |