summaryrefslogtreecommitdiffstats
path: root/src/Simulator/NoopFluidSimulator.h
diff options
context:
space:
mode:
authorTycho Bickerstaff <work.tycho@gmail.com>2013-12-22 15:55:24 +0100
committermadmaxoft <github@xoft.cz>2013-12-31 09:16:42 +0100
commit2e1588820d3c27a82d4bd6401dc9af728130908c (patch)
tree831c74b13dcf099ca2a6eba7cc87d834fad955c8 /src/Simulator/NoopFluidSimulator.h
parentfixxed warnings in Server.cpp (diff)
downloadcuberite-2e1588820d3c27a82d4bd6401dc9af728130908c.tar
cuberite-2e1588820d3c27a82d4bd6401dc9af728130908c.tar.gz
cuberite-2e1588820d3c27a82d4bd6401dc9af728130908c.tar.bz2
cuberite-2e1588820d3c27a82d4bd6401dc9af728130908c.tar.lz
cuberite-2e1588820d3c27a82d4bd6401dc9af728130908c.tar.xz
cuberite-2e1588820d3c27a82d4bd6401dc9af728130908c.tar.zst
cuberite-2e1588820d3c27a82d4bd6401dc9af728130908c.zip
Diffstat (limited to 'src/Simulator/NoopFluidSimulator.h')
-rw-r--r--src/Simulator/NoopFluidSimulator.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/Simulator/NoopFluidSimulator.h b/src/Simulator/NoopFluidSimulator.h
index 8f894433f..9113aec3c 100644
--- a/src/Simulator/NoopFluidSimulator.h
+++ b/src/Simulator/NoopFluidSimulator.h
@@ -27,8 +27,14 @@ public:
}
// cSimulator overrides:
- virtual void AddBlock(int a_BlockX, int a_BlockY, int a_BlockZ, cChunk * a_Chunk) override {}
- virtual void Simulate(float a_Dt) override {}
+ virtual void AddBlock(int a_BlockX, int a_BlockY, int a_BlockZ, cChunk * a_Chunk) override
+ {
+ UNUSED(a_BlockX);
+ UNUSED(a_BlockY);
+ UNUSED(a_BlockZ);
+ UNUSED(a_Chunk);
+ }
+ virtual void Simulate(float a_Dt) override { UNUSED(a_Dt);}
} ;