comparison gameconf.h @ 3:5a977ccbc7a9 default tip

Empty changelog
author darius
date Sat, 06 Dec 1997 05:41:29 +0000
parents
children
comparison
equal deleted inserted replaced
2:fba0b6e6cdc7 3:5a977ccbc7a9
1 /* $Id: gameconf.h,v 1.1.1.1 1997/12/06 05:41:29 darius Exp $ */
2
3 /*
4 this header declares declares variables for much information that
5 used to be constant.
6 */
7
8 #ifndef gameconf_h_
9 #define gameconf_h_
10
11 #include "Wlib.h"
12 #include "proto.h"
13
14 extern struct teaminfo_s {
15 char name[32]; /* this is not meant to limit the length of
16 team names */
17 W_Icon shield_logo; /* logo that appears in the team choice
18 window */
19 char letter; /* 1-letter abbreviation */
20 char shortname[4]; /* 3-letter abbreviation */
21 } *teaminfo;
22
23 extern int number_of_teams;
24
25 struct gameparam_spacket;
26
27 void handleGameparams P((struct gameparam_spacket *));
28
29 #endif