summaryrefslogtreecommitdiffstats
path: root/source/World.h
diff options
context:
space:
mode:
authorkeyboard.osh@gmail.com <keyboard.osh@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-04-18 04:42:45 +0200
committerkeyboard.osh@gmail.com <keyboard.osh@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-04-18 04:42:45 +0200
commitb75fc5f4e8dc837f069e89541b52144defa2d1b9 (patch)
tree2e9a05e1ed16da917c5e8651b1bb70100a9db153 /source/World.h
parentNoise: removed the unused SSE branches and unused interpolation methods. Removed the Noise.inc file. (diff)
downloadcuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar.gz
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar.bz2
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar.lz
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar.xz
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar.zst
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.zip
Diffstat (limited to '')
-rw-r--r--source/World.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/World.h b/source/World.h
index 70e203bc3..c3aa0c25c 100644
--- a/source/World.h
+++ b/source/World.h
@@ -338,6 +338,9 @@ public:
/// Calls the callback for each furnace in the specified chunk; returns true if all furnaces processed, false if the callback aborted by returning true
bool ForEachFurnaceInChunk(int a_ChunkX, int a_ChunkZ, cFurnaceCallback & a_Callback); // Exported in ManualBindings.cpp
+ /// Does an explosion with the specified strength at the specified coordinate
+ void DoExplosiontAt (float a_ExplosionSzie, int a_BlockX, int a_BlockY, int a_BlockZ); //
+
/// Calls the callback for the chest at the specified coords; returns false if there's no chest at those coords, true if found
bool DoWithChestAt (int a_BlockX, int a_BlockY, int a_BlockZ, cChestCallback & a_Callback); // Exported in ManualBindings.cpp