ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/race.h
Revision: 1.1
Committed: Fri Feb 3 07:12:50 2006 UTC (18 years, 3 months ago) by root
Content type: text/plain
Branch: MAIN
Branch point for: UPSTREAM
Log Message:
Initial revision

File Contents

# Content
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