diff options
author | STRWarrior <niels.breuker@hotmail.nl> | 2014-02-07 22:13:55 +0100 |
---|---|---|
committer | STRWarrior <niels.breuker@hotmail.nl> | 2014-02-07 22:13:55 +0100 |
commit | 176664810b43a839d92418b2558359e61b700935 (patch) | |
tree | 4da6ba38d7d55346611186922f58cb2e7bdd607f /src/Simulator/RedstoneSimulator.h | |
parent | WebAdmin is stopped properly on server shutdown / restart. (diff) | |
download | cuberite-176664810b43a839d92418b2558359e61b700935.tar cuberite-176664810b43a839d92418b2558359e61b700935.tar.gz cuberite-176664810b43a839d92418b2558359e61b700935.tar.bz2 cuberite-176664810b43a839d92418b2558359e61b700935.tar.lz cuberite-176664810b43a839d92418b2558359e61b700935.tar.xz cuberite-176664810b43a839d92418b2558359e61b700935.tar.zst cuberite-176664810b43a839d92418b2558359e61b700935.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Simulator/RedstoneSimulator.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Simulator/RedstoneSimulator.h b/src/Simulator/RedstoneSimulator.h index c505b2a0f..c5ab1b9bb 100644 --- a/src/Simulator/RedstoneSimulator.h +++ b/src/Simulator/RedstoneSimulator.h @@ -1,7 +1,7 @@ #pragma once -#include "Simulator.h" +#include "RedstoneManager.h" /// Per-chunk data for the simulator, specified individual chunks to simulate; 'Data' is not used typedef cCoordWithBlockAndBoolVector cRedstoneSimulatorChunkData; @@ -11,9 +11,9 @@ typedef cCoordWithBlockAndBoolVector cRedstoneSimulatorChunkData; class cRedstoneSimulator : - public cSimulator + public cRedstoneManager { - typedef cSimulator super; + typedef cRedstoneManager super; public: cRedstoneSimulator(cWorld & a_World); |