summaryrefslogtreecommitdiffstats
path: root/src/Simulator/SimulatorManager.h
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2014-10-25 22:54:00 +0200
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2014-10-25 22:54:00 +0200
commit85c298d73e871daadf91671cdae9db83e30f9029 (patch)
tree2f9a2afcc0bb676454f332f78bffb7bd3e6ea380 /src/Simulator/SimulatorManager.h
parentFixed some block checks (diff)
downloadcuberite-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 'src/Simulator/SimulatorManager.h')
-rw-r--r--src/Simulator/SimulatorManager.h4
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;