summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.h
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2007-09-16 00:46:32 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2007-09-16 00:46:32 +0000
commitcf87ca267353855c40cc29c08eb40b646693e3e2 (patch)
tree0d7c2732774b41cf6bf3b0bd1dd2b21752f31270 /crawl-ref/source/tutorial.h
parent6ed4daf41beec1170a296309f5013ced65ceab20 (diff)
downloadcrawl-ref-cf87ca267353855c40cc29c08eb40b646693e3e2.tar.gz
crawl-ref-cf87ca267353855c40cc29c08eb40b646693e3e2.zip
In the item selection menu, pressing "." will toggle the next item in the
list; you can press "." repeatedly to select/unselect a number of contiguous items. Also, removed the depedancy upon "menu.h" for formatted_string, since that isn't in menu.h anymore. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2101 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/tutorial.h')
-rw-r--r--crawl-ref/source/tutorial.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/tutorial.h b/crawl-ref/source/tutorial.h
index a4824ab89b..942086d207 100644
--- a/crawl-ref/source/tutorial.h
+++ b/crawl-ref/source/tutorial.h
@@ -9,14 +9,16 @@
#ifndef TUTORIAL_H
#define TUTORIAL_H
-// for formatted_string
-#include "menu.h"
-
#include <string>
#include <vector>
#include <stdio.h>
#include <stdlib.h>
+#include "AppHdr.h"
+#include "externs.h"
+
+class formatted_string;
+
void save_tutorial( FILE* fp );
void load_tutorial( FILE* fp );
void init_tutorial_options(void);