Neale Pickett
·
2011-10-13
netwait.h
1/*
2 * Score file structure
3 *
4 * @(#)netwait.h 4.6 (Berkeley) 02/05/99
5 */
6
7struct sc_ent {
8 unsigned int sc_uid;
9 unsigned short sc_score;
10 unsigned int sc_flags;
11 unsigned short sc_monster;
12 char sc_name[MAXSTR];
13 unsigned short sc_level;
14 long sc_time;
15};
16
17typedef struct sc_ent SCORE;