2012-07-15 16:36:34 -04:00
|
|
|
#pragma once
|
|
|
|
#include "Item.h"
|
|
|
|
#include "../cWorld.h"
|
|
|
|
#include "../cPlayer.h"
|
|
|
|
|
|
|
|
class cItemSwordHandler : public cItemHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cItemSwordHandler(int a_ItemID)
|
|
|
|
: cItemHandler(a_ItemID)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-07-16 15:20:37 -04:00
|
|
|
virtual bool CanHarvestBlock(BLOCKTYPE a_BlockID) override
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
return a_BlockID == E_BLOCK_COBWEB;
|
|
|
|
}
|
|
|
|
};
|