diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-10-25 22:54:00 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-10-25 22:54:00 +0200 |
commit | 85c298d73e871daadf91671cdae9db83e30f9029 (patch) | |
tree | 2f9a2afcc0bb676454f332f78bffb7bd3e6ea380 /src/Simulator/SimulatorManager.h | |
parent | Fixed some block checks (diff) | |
download | cuberite-85c298d73e871daadf91671cdae9db83e30f9029.tar cuberite-85c298d73e871daadf91671cdae9db83e30f9029.tar.gz cuberite-85c298d73e871daadf91671cdae9db83e30f9029.tar.bz2 cuberite-85c298d73e871daadf91671cdae9db83e30f9029.tar.lz cuberite-85c298d73e871daadf91671cdae9db83e30f9029.tar.xz cuberite-85c298d73e871daadf91671cdae9db83e30f9029.tar.zst cuberite-85c298d73e871daadf91671cdae9db83e30f9029.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Simulator/SimulatorManager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Simulator/SimulatorManager.h b/src/Simulator/SimulatorManager.h index 185141764..31a709316 100644 --- a/src/Simulator/SimulatorManager.h +++ b/src/Simulator/SimulatorManager.h @@ -37,10 +37,10 @@ public: void WakeUp(int a_BlockX, int a_BlockY, int a_BlockZ, cChunk * a_Chunk); - void RegisterSimulator(cSimulator<cChunk, cWorld> * a_Simulator, int a_Rate); // Takes ownership of the simulator object! + void RegisterSimulator(cSimulator * a_Simulator, int a_Rate); // Takes ownership of the simulator object! protected: - typedef std::vector <std::pair<cSimulator<cChunk, cWorld> *, int> > cSimulators; + typedef std::vector <std::pair<cSimulator *, int> > cSimulators; cWorld & m_World; cSimulators m_Simulators; |