summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/command.h
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-13 21:51:33 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-13 21:51:33 +0000
commit7f78db9414b3c2dd97da70ce74198f0360cdedc6 (patch)
treef39591afb980495e69fd438813e47f8273f47dd2 /crawl-ref/source/command.h
parentd34acfbefb3ac8ed2b22cc899976b7e9ba6a4593 (diff)
downloadcrawl-ref-7f78db9414b3c2dd97da70ce74198f0360cdedc6.tar.gz
crawl-ref-7f78db9414b3c2dd97da70ce74198f0360cdedc6.zip
Put in a very basic help browser on '+'. This is *not* a good key, I'm just
parking it here until more decisions on the browser come in. (It should probably be reachable by pressing '?' from the current '?' help screen.) It reads the manual from ../docs/crawl_manual.txt, so you'd better put it there! Yes, this is a hack and will have to be done better. You can press the letter of the section (e.g., 'j' or 'J') to jump to that section. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@627 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/command.h')
-rw-r--r--crawl-ref/source/command.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/command.h b/crawl-ref/source/command.h
index 54424d4045..f371cedc8c 100644
--- a/crawl-ref/source/command.h
+++ b/crawl-ref/source/command.h
@@ -57,10 +57,11 @@ void list_armour(void);
* *********************************************************************** */
void list_jewellery(void);
-
void swap_inv_slots(int slot1, int slot2, bool verbose);
void show_levelmap_help();
+void list_commands(bool wizard);
+void browse_file(FILE* fp);
// Actually defined in acr.cc; we may want to move this to command.cc
void process_command(command_type cmd);