summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.h
diff options
context:
space:
mode:
authorennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-28 05:31:36 +0000
committerennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-28 05:31:36 +0000
commit17d51dec2e404928c52bd4358c66703285f1eb0f (patch)
tree0dfd58f79f2359a887fbb94a65c68d33b426f324 /crawl-ref/source/output.h
parente7c257339952a377b86b78e88397e35c12851a87 (diff)
downloadcrawl-ref-17d51dec2e404928c52bd4358c66703285f1eb0f.tar.gz
crawl-ref-17d51dec2e404928c52bd4358c66703285f1eb0f.zip
* Monster list is now placed to the left of the view if the terminal is wide enough to make better use of available space.
* Added init.txt options for monster list placement. mlist_min_height - minimum items in the monster list (default: 5) mlist_force_inline - force the monster list to be between hud and messages * Fixed some (but not all) problems with the monster list being updated properly when monsters appear. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3909 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/output.h')
-rw-r--r--crawl-ref/source/output.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/output.h b/crawl-ref/source/output.h
index 357f829cf7..e3f78f6c31 100644
--- a/crawl-ref/source/output.h
+++ b/crawl-ref/source/output.h
@@ -53,7 +53,8 @@ void draw_hp_bar(int val, int max_val);
void draw_mp_bar(int val, int max_val);
#endif
-void print_stats(void);
+void print_stats();
+void update_monster_pane();
std::vector<formatted_string> get_full_detail(bool calc_unid, long score = -1);