diff gameconf.h @ 3:5a977ccbc7a9 default tip

Empty changelog
author darius
date Sat, 06 Dec 1997 05:41:29 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gameconf.h	Sat Dec 06 05:41:29 1997 +0000
@@ -0,0 +1,29 @@
+/* $Id: gameconf.h,v 1.1.1.1 1997/12/06 05:41:29 darius Exp $ */
+
+/*
+   this header declares declares variables for much information that
+   used to be constant.
+   */
+
+#ifndef gameconf_h_
+#define gameconf_h_
+
+#include "Wlib.h"
+#include "proto.h"
+
+extern struct teaminfo_s {
+    char    name[32];		/* this is not meant to limit the length of
+				   team names */
+    W_Icon  shield_logo;	/* logo that appears in the team choice
+				   window */
+    char    letter;		/* 1-letter abbreviation */
+    char    shortname[4];	/* 3-letter abbreviation */
+}      *teaminfo;
+
+extern int number_of_teams;
+
+struct gameparam_spacket;
+
+void handleGameparams P((struct gameparam_spacket *));
+
+#endif