diff options
author | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-21 16:00:31 +0100 |
---|---|---|
committer | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-21 16:00:31 +0100 |
commit | 38f808ac3d09cbb5bf437243f4b050e196fa582c (patch) | |
tree | 7f2be78caedb090c709bd28d96c9fd851bcab592 /src/Simulator | |
parent | added FORCE_32 option (diff) | |
download | cuberite-38f808ac3d09cbb5bf437243f4b050e196fa582c.tar cuberite-38f808ac3d09cbb5bf437243f4b050e196fa582c.tar.gz cuberite-38f808ac3d09cbb5bf437243f4b050e196fa582c.tar.bz2 cuberite-38f808ac3d09cbb5bf437243f4b050e196fa582c.tar.lz cuberite-38f808ac3d09cbb5bf437243f4b050e196fa582c.tar.xz cuberite-38f808ac3d09cbb5bf437243f4b050e196fa582c.tar.zst cuberite-38f808ac3d09cbb5bf437243f4b050e196fa582c.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Simulator/Simulator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Simulator/Simulator.h b/src/Simulator/Simulator.h index 5cd0e8657..3a6252024 100644 --- a/src/Simulator/Simulator.h +++ b/src/Simulator/Simulator.h @@ -25,7 +25,8 @@ public: virtual void Simulate(float a_Dt) = 0; /// Called in each tick for each chunk, a_Dt is the time passed since the last tick, in msec; direct access to chunk data available - virtual void SimulateChunk(float a_Dt, int a_ChunkX, int a_ChunkZ, cChunk * a_Chunk) {}; + virtual void SimulateChunk(float /*a_Dt*/, int /*a_ChunkX*/, + int /*a_ChunkZ*/, cChunk * /*a_Chunk*/) {}; /// Called when a block changes virtual void WakeUp(int a_BlockX, int a_BlockY, int a_BlockZ, cChunk * a_Chunk); |