summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-behv.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-behv.h
parenta49e4492fc269271c7809d2caeb1e4d80bb0b7bf (diff)
downloadcrawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.tar.gz
crawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.zip
Rename class "monsters" to "monster".
Diffstat (limited to 'crawl-ref/source/mon-behv.h')
-rw-r--r--crawl-ref/source/mon-behv.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/crawl-ref/source/mon-behv.h b/crawl-ref/source/mon-behv.h
index 6e0d671ef2..53dd8aec32 100644
--- a/crawl-ref/source/mon-behv.h
+++ b/crawl-ref/source/mon-behv.h
@@ -20,31 +20,31 @@ enum mon_event_type
ME_CORNERED, // cannot flee
};
-class monsters;
+class monster;
struct coord_def;
-void behaviour_event(monsters *mon, mon_event_type event_type,
+void behaviour_event(monster* mon, mon_event_type event_type,
int src = MHITNOT, coord_def src_pos = coord_def(),
bool allow_shout = true);
// This function is somewhat low level; you should probably use
// behaviour_event(mon, ME_EVAL) instead.
-void handle_behaviour(monsters *mon);
+void handle_behaviour(monster* mon);
-void make_mons_stop_fleeing(monsters *mon);
+void make_mons_stop_fleeing(monster* mon);
-void set_random_target(monsters* mon);
+void set_random_target(monster* mon);
-void make_mons_leave_level(monsters *mon);
+void make_mons_leave_level(monster* mon);
-bool monster_can_hit_monster(monsters* mons, const monsters *targ);
+bool monster_can_hit_monster(monster* mons, const monster* targ);
-bool mons_avoids_cloud(const monsters* mons, cloud_type cl_type,
+bool mons_avoids_cloud(const monster* mons, cloud_type cl_type,
bool placement = false);
// Like the above, but allow a monster to move from one damaging cloud
// to another.
-bool mons_avoids_cloud(const monsters* mons, int cloud_num,
+bool mons_avoids_cloud(const monster* mons, int cloud_num,
cloud_type *cl_type = NULL, bool placement = false);
#endif