summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-gear.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-01-05 14:18:36 +0100
committerAdam Borowski <kilobyte@angband.pl>2012-01-05 14:29:45 +0100
commit2db87d6d5c94edc73c41230093cc3d1cfe251bf1 (patch)
treeb880787e42f9b8cd56cad86c15fb76c35a6d68b6 /crawl-ref/source/mon-gear.h
parent2b2b927f740c756cb93982818b763432be60d9a4 (diff)
downloadcrawl-ref-2db87d6d5c94edc73c41230093cc3d1cfe251bf1.tar.gz
crawl-ref-2db87d6d5c94edc73c41230093cc3d1cfe251bf1.zip
Make high-level monster creation return monster*
Diffstat (limited to 'crawl-ref/source/mon-gear.h')
-rw-r--r--crawl-ref/source/mon-gear.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mon-gear.h b/crawl-ref/source/mon-gear.h
index c0a4d1a3e6..4ced4c4e72 100644
--- a/crawl-ref/source/mon-gear.h
+++ b/crawl-ref/source/mon-gear.h
@@ -7,8 +7,8 @@
#define MON_GEAR_H
void give_specific_item(monster* mon, const item_def& tpl);
-void give_item(int idx, int level_number,
+void give_item(monster *mon, int level_number,
bool mons_summoned, bool spectral_orcs = false);
-void give_weapon(int idx, int level_number, bool mons_summoned,
+void give_weapon(monster *mon, int level_number, bool mons_summoned,
bool spectral_orcs = false);
#endif