summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2010-09-05 08:40:26 +0200
committerRobert Vollmert <rvollmert@gmx.net>2010-09-05 12:56:08 +0200
commita49e4492fc269271c7809d2caeb1e4d80bb0b7bf (patch)
tree66876acf63363e5f2bc3cddb3493d5ae01a34c1d /crawl-ref/source/view.h
parent0dddc8ccfbd7d015092f761c69285a0fc17f4de5 (diff)
downloadcrawl-ref-a49e4492fc269271c7809d2caeb1e4d80bb0b7bf.tar.gz
crawl-ref-a49e4492fc269271c7809d2caeb1e4d80bb0b7bf.zip
Rename variables named "monster" to "mons" or similar.
Diffstat (limited to 'crawl-ref/source/view.h')
-rw-r--r--crawl-ref/source/view.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/view.h b/crawl-ref/source/view.h
index 63f81b808e..e910b3ec0a 100644
--- a/crawl-ref/source/view.h
+++ b/crawl-ref/source/view.h
@@ -13,8 +13,8 @@
void init_monsters_seens();
-bool mons_near(const monsters *monster);
-bool mon_enemies_around(const monsters *monster);
+bool mons_near(const monsters* mons);
+bool mon_enemies_around(const monsters* mons);
void seen_monsters_react();
void find_features(const std::vector<coord_def>& features,
@@ -44,7 +44,7 @@ void flash_monster_colour(const monsters *mon, uint8_t fmc_colour,
void viewwindow(bool show_updates = true);
void update_monsters_in_view();
-void handle_seen_interrupt(monsters* monster);
+void handle_seen_interrupt(monsters* mons);
void flush_comes_into_view();
void toggle_show_terrain();