summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-08-09 11:03:22 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-08-09 11:03:22 +0000
commite6a12403170aa719f2ae597c3b251a7f25ddbb94 (patch)
treecfce32d539e420d57f216f076561123b159b4d75 /crawl-ref/source/dungeon.h
parent2783491ec3f7c58c6d9872f8cafd74511091a198 (diff)
downloadcrawl-ref-e6a12403170aa719f2ae597c3b251a7f25ddbb94.tar.gz
crawl-ref-e6a12403170aa719f2ae597c3b251a7f25ddbb94.zip
[1770625] Allow generated monster names in &M.
Removed sealed entry vaults. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1982 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/dungeon.h')
-rw-r--r--crawl-ref/source/dungeon.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/dungeon.h b/crawl-ref/source/dungeon.h
index 36cf1e0e28..09308c7914 100644
--- a/crawl-ref/source/dungeon.h
+++ b/crawl-ref/source/dungeon.h
@@ -284,4 +284,9 @@ bool unforbidden(const coord_def &c, unsigned mask);
coord_def dgn_find_nearby_stair(dungeon_feature_type stair_to_find,
bool find_closest);
+class mons_spec;
+bool dgn_place_monster(const mons_spec &mspec,
+ int monster_level, int vx, int vy,
+ bool generate_awake);
+
#endif