mirror of
https://github.com/nealey/rogue
synced 2025-01-13 10:25:14 -07:00
18 lines
310 B
C
18 lines
310 B
C
|
/*
|
||
|
* Score file structure
|
||
|
*
|
||
|
* @(#)netwait.h 4.6 (Berkeley) 02/05/99
|
||
|
*/
|
||
|
|
||
|
struct sc_ent {
|
||
|
unsigned int sc_uid;
|
||
|
unsigned short sc_score;
|
||
|
unsigned int sc_flags;
|
||
|
unsigned short sc_monster;
|
||
|
char sc_name[MAXSTR];
|
||
|
unsigned short sc_level;
|
||
|
long sc_time;
|
||
|
};
|
||
|
|
||
|
typedef struct sc_ent SCORE;
|