diff options
Diffstat (limited to '')
-rw-r--r-- | src/Simulator/SandSimulator.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/Simulator/SandSimulator.h b/src/Simulator/SandSimulator.h index e05b0de80..d27fd5873 100644 --- a/src/Simulator/SandSimulator.h +++ b/src/Simulator/SandSimulator.h @@ -55,7 +55,6 @@ public: private: - 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; bool m_IsInstantFall; // If set to true, blocks don't fall using cFallingBlock entity, but instantly instead @@ -67,12 +66,3 @@ private: /** Performs the instant fall of the block - removes it from top, Finishes it at the bottom */ void DoInstantFall(cChunk * a_Chunk, int a_RelX, int a_RelY, int a_RelZ); }; - - - - - - - - - |