summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/startup.h
diff options
context:
space:
mode:
authorJanne Lahdenpera <felirx@gmail.com>2010-04-16 03:15:02 +0300
committerRobert Vollmert <rvollmert@gmx.net>2010-04-21 12:36:48 +0200
commitc41c976544cd76c4782c9af9bd293ee5a12d7d5c (patch)
treea2f9ca0bc62999635fe92f046c0aa0f73fe9d8f7 /crawl-ref/source/startup.h
parent3ec286ef4ae42ab7c43d5f25fac40054bb033c81 (diff)
downloadcrawl-ref-c41c976544cd76c4782c9af9bd293ee5a12d7d5c.tar.gz
crawl-ref-c41c976544cd76c4782c9af9bd293ee5a12d7d5c.zip
Startup menus.
This patch provides the startup menu. Things that (seem) to work properly: Normal game, Sprint, Arena, savegame loading. Things that need improvement: Tutorial does not activate, left it for future project when the new fixed tutorial map is included. Arena needs an options screen before it starts running. MenuScroller does not have a visible scrollbar or more texts. Texts are not properly wrapped inside TextItems. Should also provide an TextItem that uses formatted_string. Signed-off-by: Janne Lahdenpera <felirx@gmail.com> Signed-off-by: Robert Vollmert <rvollmert@gmx.net>
Diffstat (limited to 'crawl-ref/source/startup.h')
-rw-r--r--crawl-ref/source/startup.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/crawl-ref/source/startup.h b/crawl-ref/source/startup.h
new file mode 100644
index 0000000000..5e9a7d8c03
--- /dev/null
+++ b/crawl-ref/source/startup.h
@@ -0,0 +1,12 @@
+/*
+ * File: startup.h
+ * Summary: Collection of startup related functions and objects
+ * Written by:
+ */
+
+#ifndef STARTUP_H
+#define STARTUP_H
+
+bool startup_step();
+
+#endif \ No newline at end of file