summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockFire.cpp
blob: 5ca8dd902e74e2f7533bee989233b1b02f0a41b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "Globals.h"
#include "BlockFire.h"
#include "../cItem.h"
#include "../cWorld.h"

cBlockFireHandler::cBlockFireHandler(BLOCKTYPE a_BlockID)
	: cBlockHandler(a_BlockID)
{
}

void cBlockFireHandler::OnClick(cWorld *a_World, cPlayer *a_Player, int a_X, int a_Y, int a_Z)
{
	a_World->DigBlock(a_X, a_Y, a_Z);
}

char cBlockFireHandler::GetDropCount()
{
	return -1;
}

bool cBlockFireHandler::IsClickedThrough()
{
	return true;
}