2014-04-08 18:49:53 +01:00
|
|
|
|
2014-09-11 17:48:21 +01:00
|
|
|
#include "Globals.h"
|
2014-02-07 22:59:08 +01:00
|
|
|
|
2014-09-17 18:40:10 +01:00
|
|
|
#include "BlockEntities/ChestEntity.h"
|
|
|
|
|
|
|
|
|
|
typedef cItemCallback<cChestEntity> cChestCallback;
|
2014-02-07 22:59:08 +01:00
|
|
|
|
2014-09-11 17:48:21 +01:00
|
|
|
#include "IncrementalRedstoneSimulator.inc"
|
|
|
|
|
|
|
|
|
|
#include "Chunk.h"
|
|
|
|
|
#include "World.h"
|
|
|
|
|
#include "Blocks/GetHandlerCompileTimeTemplate.h"
|
|
|
|
|
#include "Blocks/BlockTorch.h"
|
|
|
|
|
#include "Blocks/BlockLever.h"
|
|
|
|
|
#include "Blocks/BlockButton.h"
|
|
|
|
|
#include "Blocks/BlockTripwireHook.h"
|
|
|
|
|
#include "Blocks/BlockDoor.h"
|
|
|
|
|
#include "Blocks/BlockPiston.h"
|
|
|
|
|
|
2014-09-16 20:29:31 +01:00
|
|
|
cRedstoneSimulator<cChunk, cWorld> * MakeIncrementalRedstoneSimulator(cWorld & a_World)
|
|
|
|
|
{
|
|
|
|
|
return new cIncrementalRedstoneSimulator<cChunk, cWorld, GetHandlerCompileTime, cChestEntity>(a_World);
|
|
|
|
|
}
|
|
|
|
|
|