ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/artifact.h
Revision: 1.2
Committed: Tue Aug 29 08:01:36 2006 UTC (17 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.1: +9 -9 lines
Log Message:
expand initial tabs to spaces

File Contents

# Content
1 typedef struct artifactstruct {
2 object *item;
3 uint16 chance;
4 uint8 difficulty;
5 struct artifactstruct *next;
6 linked_char *allowed;
7 } artifact;
8
9 typedef struct artifactliststruct {
10 uint8 type; /* Object type that this list represents */
11 uint16 total_chance; /* sum of chance for are artifacts on this list */
12 struct artifactliststruct *next;
13 struct artifactstruct *items;
14 } artifactlist;
15