version 1.1 | | version 1.2 |
---|
| | |
typedef struct glnk { /* Used to link together the gods */ | | typedef struct glnk { /* Used to link together the gods */ |
char *name; /* name of this god */ | | const char *name; /* name of this god */ |
struct archt *arch; /* pointer to the archetype of this god */ | | struct archt *arch; /* pointer to the archetype of this god */ |
int id; /* id of the god */ | | int id; /* id of the god */ |
char *pantheon; /* the name of the group this god belongs to */ | | const char *pantheon; /* the name of the group this god belongs to */ |
struct glnk *next; | | struct glnk *next; |
} godlink; | | } godlink; |
| | |