ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/race.h
(Generate patch)

Comparing deliantra/server/include/race.h (file contents):
Revision 1.1 by root, Fri Feb 3 07:12:50 2006 UTC vs.
Revision 1.2 by root, Mon Sep 11 01:49:03 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines