diff options
Diffstat (limited to '')
-rw-r--r-- | src/Physics/Explodinator.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/Physics/Explodinator.h b/src/Physics/Explodinator.h new file mode 100644 index 000000000..daf86456a --- /dev/null +++ b/src/Physics/Explodinator.h @@ -0,0 +1,20 @@ + +#pragma once + + + + + +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. + Kaboom indeed, you drunken wretch. */ + void Kaboom(cWorld & World, Vector3f Position, unsigned Power, bool Fiery); +} |