2012-09-23 15:09:57 -07:00
|
|
|
|
2012-07-15 13:36:34 -07:00
|
|
|
#pragma once
|
2012-09-23 15:09:57 -07:00
|
|
|
|
|
|
|
#include "ItemHandler.h"
|
|
|
|
#include "../World.h"
|
|
|
|
#include "../Player.h"
|
2012-07-15 13:36:34 -07:00
|
|
|
|
|
|
|
class cItemSwordHandler : public cItemHandler
|
|
|
|
{
|
|
|
|
public:
|
2012-10-18 12:41:29 -07:00
|
|
|
cItemSwordHandler(int a_ItemType)
|
|
|
|
: cItemHandler(a_ItemType)
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-10-03 01:52:11 -07:00
|
|
|
virtual bool CanHarvestBlock(BLOCKTYPE a_BlockType) override
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
2013-04-06 11:20:06 -07:00
|
|
|
return (a_BlockType == E_BLOCK_COBWEB);
|
2012-07-15 13:36:34 -07:00
|
|
|
}
|
|
|
|
};
|