2006de2217
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1363 0a769ca7-a7f5-676a-18bf-c427514a06d6
21 lines
346 B
C++
21 lines
346 B
C++
|
|
#pragma once
|
|
|
|
#include "ItemHandler.h"
|
|
#include "../World.h"
|
|
#include "../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);
|
|
}
|
|
}; |