1
0
cuberite-2a/src/Simulator/NoopRedstoneSimulator.h

44 lines
847 B
C
Raw Normal View History

#pragma once
#include "RedstoneSimulator.h"
class cRedstoneNoopSimulator :
2014-10-25 20:54:00 +00:00
public cRedstoneSimulator
{
2014-10-25 20:54:00 +00:00
typedef cRedstoneSimulator super;
public:
cRedstoneNoopSimulator(cWorld & a_World) :
super(a_World)
{
}
virtual void Simulate(float a_Dt) override { UNUSED(a_Dt);} // not used
virtual void SimulateChunk(std::chrono::milliseconds a_Dt, int a_ChunkX, int a_ChunkZ, cChunk * a_Chunk) override
{
UNUSED(a_Dt);
UNUSED(a_ChunkX);
UNUSED(a_ChunkZ);
UNUSED(a_Chunk);
}
virtual bool IsAllowedBlock( BLOCKTYPE a_BlockType) override { return false; }
virtual void AddBlock(int a_BlockX, int a_BlockY, int a_BlockZ, cChunk * a_Chunk) override
{
UNUSED(a_BlockX);
UNUSED(a_BlockY);
UNUSED(a_BlockZ);
UNUSED(a_Chunk);
}
virtual cRedstoneSimulatorChunkData * CreateChunkData() override
{
2014-10-20 20:55:07 +00:00
return nullptr;
}
2014-02-07 21:25:15 +00:00
} ;