summaryrefslogtreecommitdiffstats
path: root/source/items/ItemSword.h
blob: cbe172c8f644b2b46d0df0ab0d511edeca624795 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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;
	}
};