1 /*
2  *	@(#) hiscore.h -- defines for the TROJKA++ hiscore table
3  * 	created:	years ago
4  *	modified:	6.iii.1992
5  */
6 
7 #ifndef _hiscore_
8 #define _hiscore_
9 
10 #define NUMSCORES 20
11 
12 struct scorefile {			/* structure for highscore table*/
13 		unsigned long points;
14 		char name[25];
15 		int stage;
16 };
17 
18 #define FILE_SIZE	(NUMSCORES*sizeof(struct scorefile))
19 
20 #define STDNAME 	"Romanov"
21 #define STDLEVEL	3
22 
23 
24 #endif _hiscore_
25