--- deliantra/server/include/artifact.h 2006/08/29 08:01:36 1.2 +++ deliantra/server/include/artifact.h 2006/09/16 22:06:17 1.3 @@ -1,15 +1,16 @@ -typedef struct artifactstruct { - object *item; - uint16 chance; - uint8 difficulty; - struct artifactstruct *next; - linked_char *allowed; -} artifact; - -typedef struct artifactliststruct { - uint8 type; /* Object type that this list represents */ - uint16 total_chance; /* sum of chance for are artifacts on this list */ - struct artifactliststruct *next; - struct artifactstruct *items; -} artifactlist; +struct artifact +{ + object *item; + uint16 chance; + uint8 difficulty; + artifact *next; + linked_char *allowed; +}; +struct artifactlist +{ + uint8 type; /* Object type that this list represents */ + uint16 total_chance; /* sum of chance for are artifacts on this list */ + artifactlist *next; + artifact *items; +};