summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/arena.h
diff options
context:
space:
mode:
authorMatthew Cline <zelgadis@sourceforge.net>2009-11-02 23:33:53 -0800
committerMatthew Cline <zelgadis@sourceforge.net>2009-11-02 23:33:53 -0800
commit236984fc0e217264ab98093723fa7f8649cc3cf4 (patch)
tree307e14216db42718fb6e9baf8783580bb5199bf4 /crawl-ref/source/arena.h
parent27c812572cca68a61a9d0450dabcfb209e3bae7c (diff)
downloadcrawl-ref-236984fc0e217264ab98093723fa7f8649cc3cf4.tar.gz
crawl-ref-236984fc0e217264ab98093723fa7f8649cc3cf4.zip
arena: respawning slime creatures
Deal with two respawning slime creatures merging and then splitting.
Diffstat (limited to 'crawl-ref/source/arena.h')
-rw-r--r--crawl-ref/source/arena.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/arena.h b/crawl-ref/source/arena.h
index 039e2bca3c..619767d841 100644
--- a/crawl-ref/source/arena.h
+++ b/crawl-ref/source/arena.h
@@ -23,8 +23,11 @@ bool arena_veto_random_monster(monster_type type);
bool arena_veto_place_monster(const mgen_data &mg, bool first_band_member,
const coord_def& pos);
+
void arena_placed_monster(monsters *monster);
+void arena_split_monster(monsters *split_from, monsters *split_to);
+
void arena_monster_died(monsters *monster, killer_type killer,
int killer_index, bool silent, int corpse);