ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/race.h
Revision: 1.1.1.1 (vendor branch)
Committed: Fri Feb 3 07:12:50 2006 UTC (18 years, 4 months ago) by root
Content type: text/plain
Branch: UPSTREAM
CVS Tags: LAST_C_VERSION, UPSTREAM_2006_03_15, UPSTREAM_2006_02_22, UPSTREAM_2006_02_03, difficulty_fix_merge_060810_2300
Branch point for: difficulty_fix
Changes since 1.1: +0 -0 lines
Log Message:
initial import

File Contents

# User Rev Content
1 root 1.1
2     typedef struct ralnk { /* Used to link the race lists together */
3     const char *name; /* name of this race entry */
4     int nrof; /* nrof things belonging to this race */
5     struct oblnk *member; /* linked object list of things belonging to this race */
6     struct ralnk *next;
7     } racelink;
8    
9