summaryrefslogtreecommitdiff
path: root/src/i_system.h
diff options
context:
space:
mode:
authorSimon Howard2008-09-27 02:15:33 +0000
committerSimon Howard2008-09-27 02:15:33 +0000
commit013dc015d160e5090579f75f4b8a9b3d5acb7b52 (patch)
tree746d224cc7eadc0e4b19f742257226dd959354f7 /src/i_system.h
parentc33d1935292af81142783137e09dec828df298bc (diff)
downloadchocolate-doom-013dc015d160e5090579f75f4b8a9b3d5acb7b52.tar.gz
chocolate-doom-013dc015d160e5090579f75f4b8a9b3d5acb7b52.tar.bz2
chocolate-doom-013dc015d160e5090579f75f4b8a9b3d5acb7b52.zip
Split out startup banner code into common code; display copyright notice
in Heretic. Subversion-branch: /branches/raven-branch Subversion-revision: 1295
Diffstat (limited to 'src/i_system.h')
-rw-r--r--src/i_system.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/i_system.h b/src/i_system.h
index 000c6025..2af3aa33 100644
--- a/src/i_system.h
+++ b/src/i_system.h
@@ -85,5 +85,17 @@ void I_BindVariables(void);
void I_Endoom(byte *data);
+// Print startup banner copyright message.
+
+void I_PrintStartupBanner(char *gamedescription);
+
+// Print a centered text banner displaying the given string.
+
+void I_PrintBanner(char *text);
+
+// Print a dividing line for startup banners.
+
+void I_PrintDivider(void);
+
#endif