summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-06-23 00:52:49 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-06-23 00:52:49 +0200
commit9b058762b2f963cb208aa6be630492c87da0da3d (patch)
tree9833fbf24b7181849252bcfe187629b8d5c76108 /crawl-ref/source/view.h
parentd5b208b7eb891e070ae1eaa1cfa56e444b61277e (diff)
downloadcrawl-ref-9b058762b2f963cb208aa6be630492c87da0da3d.tar.gz
crawl-ref-9b058762b2f963cb208aa6be630492c87da0da3d.zip
Decouple stealth checks from drawing the view window.
Diffstat (limited to 'crawl-ref/source/view.h')
-rw-r--r--crawl-ref/source/view.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/view.h b/crawl-ref/source/view.h
index 1b69374c92..2f43a2431e 100644
--- a/crawl-ref/source/view.h
+++ b/crawl-ref/source/view.h
@@ -15,6 +15,7 @@ void init_monsters_seens();
bool mons_near(const monsters *monster);
bool mon_enemies_around(const monsters *monster);
+void seen_monsters_react();
void find_features(const std::vector<coord_def>& features,
unsigned char feature, std::vector<coord_def> *found);
@@ -41,7 +42,7 @@ void flash_monster_colour(const monsters *mon, unsigned char fmc_colour,
int fmc_delay);
#endif
-void viewwindow(bool monster_updates, bool show_updates = true);
+void viewwindow(bool show_updates = true);
void update_monsters_in_view();
void handle_seen_interrupt(monsters* monster);
void flush_comes_into_view();