summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilepick.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2010-09-06 06:33:57 +0200
committerRobert Vollmert <rvollmert@gmx.net>2010-09-05 12:56:13 +0200
commit31adfd48395f3c74daad1f72b874f497020481a7 (patch)
treed7733b7e157fa13c4af485ed7c51b3f97c6b1a72 /crawl-ref/source/tilepick.h
parenta49e4492fc269271c7809d2caeb1e4d80bb0b7bf (diff)
downloadcrawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.tar.gz
crawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.zip
Rename class "monsters" to "monster".
Diffstat (limited to 'crawl-ref/source/tilepick.h')
-rw-r--r--crawl-ref/source/tilepick.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/tilepick.h b/crawl-ref/source/tilepick.h
index 4e2fe03dd4..e5f67405b7 100644
--- a/crawl-ref/source/tilepick.h
+++ b/crawl-ref/source/tilepick.h
@@ -14,7 +14,7 @@ struct bolt;
struct cloud_struct;
class coord_def;
class item_def;
-class monsters;
+class monster;
struct show_type;
// Tile index lookup from Crawl data.
@@ -23,9 +23,9 @@ tileidx_t tileidx_out_of_bounds(int branch);
void tileidx_from_map_cell(tileidx_t *fg, tileidx_t *bg, const map_cell &cell);
void tileidx_out_of_los(tileidx_t *fg, tileidx_t *bg, const coord_def& gc);
-tileidx_t tileidx_monster(const monsters *mon);
-tileidx_t tileidx_draco_base(const monsters *mon);
-tileidx_t tileidx_draco_job(const monsters *mon);
+tileidx_t tileidx_monster(const monster* mon);
+tileidx_t tileidx_draco_base(const monster* mon);
+tileidx_t tileidx_draco_job(const monster* mon);
tileidx_t tileidx_item(const item_def &item);
tileidx_t tileidx_item_throw(const item_def &item, int dx, int dy);
@@ -53,7 +53,7 @@ tileidx_t tileidx_enchant_equ(const item_def &item, tileidx_t tile);
// return index, flag, and tile name as a printable string.
std::string tile_debug_string(tileidx_t fg, tileidx_t bg, char prefix);
-void tile_init_props(monsters *mon);
+void tile_init_props(monster* mon);
#endif
#endif