summaryrefslogtreecommitdiffstats
path: root/src/Physics/Explodinator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Physics/Explodinator.h')
-rw-r--r--src/Physics/Explodinator.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Physics/Explodinator.h b/src/Physics/Explodinator.h
index daf86456a..4772618de 100644
--- a/src/Physics/Explodinator.h
+++ b/src/Physics/Explodinator.h
@@ -5,16 +5,17 @@
+class cEntity;
class cWorld;
-
namespace Explodinator
{
/** Creates an explosion of Power, centred at Position, with ability to set fires as provided.
For maximum efficiency, Position should be in the centre of the entity or block that exploded.
+ The entity pointer is used to trigger OnBreak for the destroyed blocks.
Kaboom indeed, you drunken wretch. */
- void Kaboom(cWorld & World, Vector3f Position, unsigned Power, bool Fiery);
+ void Kaboom(cWorld & World, Vector3f Position, unsigned Power, bool Fiery, const cEntity * a_ExplodingEntity);
}