ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/race.h
Revision: 1.2
Committed: Mon Sep 11 01:49:03 2006 UTC (17 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_0, rel-2_1
Changes since 1.1: +7 -6 lines
Log Message:
fix races, fix switch case indent

File Contents

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