summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dbg-util.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/dbg-util.h
parenta49e4492fc269271c7809d2caeb1e4d80bb0b7bf (diff)
downloadcrawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.tar.gz
crawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.zip
Rename class "monsters" to "monster".
Diffstat (limited to 'crawl-ref/source/dbg-util.h')
-rw-r--r--crawl-ref/source/dbg-util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/dbg-util.h b/crawl-ref/source/dbg-util.h
index 951b49948f..3c853bfc02 100644
--- a/crawl-ref/source/dbg-util.h
+++ b/crawl-ref/source/dbg-util.h
@@ -20,13 +20,13 @@ void debug_dump_levgen();
struct item_def;
std::string debug_art_val_str(const item_def& item);
-class monsters;
+class monster;
struct coord_def;
std::string debug_coord_str(const coord_def &pos);
-void debug_dump_mon(const monsters* mon, bool recurse);
+void debug_dump_mon(const monster* mon, bool recurse);
-std::string debug_mon_str(const monsters* mon);
+std::string debug_mon_str(const monster* mon);
#endif