summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-util.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-23 17:11:56 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-23 17:11:56 +0000
commit7e8a32831f88e720c9ba724037b76d09fc5c1cd0 (patch)
treec6cf3786e3650ee690136f8330fd8c50033c5eb3 /crawl-ref/source/mon-util.h
parent74306af7d80b6dc3360b145270bd7d5ca20eb19f (diff)
downloadcrawl-ref-7e8a32831f88e720c9ba724037b76d09fc5c1cd0.tar.gz
crawl-ref-7e8a32831f88e720c9ba724037b76d09fc5c1cd0.zip
Allow monster symbols to be customised using the mon_glyph option.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1916 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/mon-util.h')
-rw-r--r--crawl-ref/source/mon-util.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/crawl-ref/source/mon-util.h b/crawl-ref/source/mon-util.h
index ecf33d7683..a5802ba51a 100644
--- a/crawl-ref/source/mon-util.h
+++ b/crawl-ref/source/mon-util.h
@@ -69,15 +69,14 @@ struct monsterentry
size_type size;
};
-
-// wow. this struct is only about 48 bytes, (excluding the name)
-
+monsterentry *get_monster_data(int p_monsterid);
// last updated 10jun2000 {dlb}
/* ***********************************************************************
* called from: acr
* *********************************************************************** */
void init_monsters( FixedVector<unsigned short, 1000>& colour );
+void init_monster_symbols();
// this is the old moname()
std::string mons_type_name(int type, description_level_type desc );
@@ -263,7 +262,7 @@ int mons_power(int mclass);
/* ***********************************************************************
* called from: spells2 - view
* *********************************************************************** */
-unsigned char mons_char(int mc);
+unsigned mons_char(int mc);
// last updated 10jun2000 {dlb}