summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monstuff.h')
-rw-r--r--crawl-ref/source/monstuff.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/crawl-ref/source/monstuff.h b/crawl-ref/source/monstuff.h
index 2381e34832..e9edad576b 100644
--- a/crawl-ref/source/monstuff.h
+++ b/crawl-ref/source/monstuff.h
@@ -162,4 +162,11 @@ void seen_monster(struct monsters *monster);
bool shift_monster( struct monsters *mon, int x = 0, int y = 0 );
+int mons_weapon_damage_rating(const item_def &launcher);
+int mons_pick_best_missile(monsters *mons, item_def **launcher,
+ bool ignore_melee = false);
+int mons_missile_damage(const item_def *launch,
+ const item_def *missile);
+int mons_thrown_weapon_damage(const item_def *weap);
+
#endif