diff options
Diffstat (limited to '')
-rw-r--r-- | source/World.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/World.h b/source/World.h index fe339ea61..6bc6cb4c7 100644 --- a/source/World.h +++ b/source/World.h @@ -329,6 +329,9 @@ public: /// Spawns item pickups for each item in the list. May compress pickups if too many entities. All pickups get the speed specified: void SpawnItemPickups(const cItems & a_Pickups, double a_BlockX, double a_BlockY, double a_BlockZ, double a_SpeedX, double a_SpeedY, double a_SpeedZ); + + /// Spawns a new primed TNT entity at the specified block coords and specified fuse duration + void SpawnPrimedTNT(double a_X, double a_Y, double a_Z, float a_FuseTimeInSec); // tolua_end |