2012-10-06 16:04:58 -04:00
|
|
|
|
2012-07-15 16:36:34 -04:00
|
|
|
#include "Globals.h"
|
|
|
|
#include "BlockRedstone.h"
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "../Item.h"
|
|
|
|
#include "../World.h"
|
2012-07-15 16:36:34 -04:00
|
|
|
|
2012-10-06 16:04:58 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-03 04:52:11 -04:00
|
|
|
cBlockRedstoneHandler::cBlockRedstoneHandler(BLOCKTYPE a_BlockType)
|
|
|
|
: cBlockHandler(a_BlockType)
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-10-06 16:04:58 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-03 04:52:11 -04:00
|
|
|
void cBlockRedstoneHandler::OnDestroyed(cWorld *a_World, int a_BlockX, int a_BlockY, int a_BlockZ)
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
2012-10-06 16:04:58 -04:00
|
|
|
// Nothing needed yet
|
2012-07-15 16:36:34 -04:00
|
|
|
}
|
|
|
|
|
2012-10-06 16:04:58 -04:00
|
|
|
|
|
|
|
|
|
|
|
|