summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-abil.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/mon-abil.h
parenta49e4492fc269271c7809d2caeb1e4d80bb0b7bf (diff)
downloadcrawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.tar.gz
crawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.zip
Rename class "monsters" to "monster".
Diffstat (limited to 'crawl-ref/source/mon-abil.h')
-rw-r--r--crawl-ref/source/mon-abil.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/crawl-ref/source/mon-abil.h b/crawl-ref/source/mon-abil.h
index 7dfd6a069d..c111c5f4fe 100644
--- a/crawl-ref/source/mon-abil.h
+++ b/crawl-ref/source/mon-abil.h
@@ -7,18 +7,18 @@
#ifndef MONABIL_H
#define MONABIL_H
-class monsters;
+class monster;
struct bolt;
-bool mon_special_ability(monsters* mons, bolt & beem);
-void mon_nearby_ability(monsters* mons);
+bool mon_special_ability(monster* mons, bolt & beem);
+void mon_nearby_ability(monster* mons);
-bool ugly_thing_mutate(monsters *ugly, bool proximity = false);
+bool ugly_thing_mutate(monster* ugly, bool proximity = false);
-void ballisto_on_move(monsters* mons, const coord_def & pos);
-void activate_ballistomycetes(monsters* mons, const coord_def & origin,
+void ballisto_on_move(monster* mons, const coord_def & pos);
+void activate_ballistomycetes(monster* mons, const coord_def & origin,
bool player_kill);
-void move_kraken_tentacles(monsters * kraken);
+void move_kraken_tentacles(monster* kraken);
#endif