summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-cast.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-cast.h
parenta49e4492fc269271c7809d2caeb1e4d80bb0b7bf (diff)
downloadcrawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.tar.gz
crawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.zip
Rename class "monsters" to "monster".
Diffstat (limited to 'crawl-ref/source/mon-cast.h')
-rw-r--r--crawl-ref/source/mon-cast.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/crawl-ref/source/mon-cast.h b/crawl-ref/source/mon-cast.h
index 1140b7d72d..deecbb1ba2 100644
--- a/crawl-ref/source/mon-cast.h
+++ b/crawl-ref/source/mon-cast.h
@@ -9,26 +9,26 @@
#include "enum.h"
-class monsters;
+class monster;
struct bolt;
void init_mons_spells();
bool is_valid_mon_spell(spell_type spell);
-bool handle_mon_spell(monsters* mons, bolt &beem);
+bool handle_mon_spell(monster* mons, bolt &beem);
-bolt mons_spells(monsters *mons, spell_type spell_cast, int power,
+bolt mons_spells(monster* mons, spell_type spell_cast, int power,
bool check_validity = false);
-void mons_cast(monsters* mons, bolt &pbolt, spell_type spell_cast,
+void mons_cast(monster* mons, bolt &pbolt, spell_type spell_cast,
bool do_noise = true, bool special_ability = false);
-void mons_cast_noise(monsters* mons, const bolt &pbolt,
+void mons_cast_noise(monster* mons, const bolt &pbolt,
spell_type spell_cast, bool special_ability = false);
-bool setup_mons_cast(monsters* mons, bolt &pbolt, spell_type spell_cast,
+bool setup_mons_cast(monster* mons, bolt &pbolt, spell_type spell_cast,
bool check_validity = false);
-void mons_cast_haunt(monsters* mons);
-void mons_cast_mislead(monsters* mons);
+void mons_cast_haunt(monster* mons);
+void mons_cast_mislead(monster* mons);
bool actor_is_illusion_cloneable(actor *target);
-void mons_cast_spectral_orcs(monsters* mons);
+void mons_cast_spectral_orcs(monster* mons);
#endif