summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockRedstone.cpp
blob: 35cdc34cfdff816ef054a0d4ec086b168da2d337 (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
25
26
27

#include "Globals.h"
#include "BlockRedstone.h"
#include "../Item.h"
#include "../World.h"





cBlockRedstoneHandler::cBlockRedstoneHandler(BLOCKTYPE a_BlockType)
	: cBlockHandler(a_BlockType)
{
}





void cBlockRedstoneHandler::OnDestroyed(cWorld *a_World, int a_BlockX, int a_BlockY, int a_BlockZ)
{
	// Nothing needed yet
}