version 1.35 | | version 1.36 |
---|
| | |
/* | | /* |
* static char *rcsid_define_h = | | * static char *rcsid_define_h = |
* "$Id: map.h,v 1.35 2006/02/19 14:29:14 akirschbaum Exp $"; | | * "$Id: map.h,v 1.36 2006/02/27 20:06:53 akirschbaum Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
*/ | | */ |
typedef struct mapdef { | | typedef struct mapdef { |
struct mapdef *next; /* Next map, linked list */ | | struct mapdef *next; /* Next map, linked list */ |
char path[HUGE_BUF]; /* Filename of the map */ | | |
char *tmpname; /* Name of temporary file */ | | char *tmpname; /* Name of temporary file */ |
char *name; /* Name of map as given by its creator */ | | char *name; /* Name of map as given by its creator */ |
region *region; /* What jurisdiction in the game world this map is ruled by | | region *region; /* What jurisdiction in the game world this map is ruled by |
| | |
char *maplore; /* Map lore information */ | | char *maplore; /* Map lore information */ |
char *tile_path[4]; /* path to adjoining maps */ | | char *tile_path[4]; /* path to adjoining maps */ |
struct mapdef *tile_map[4]; /* Next map, linked list */ | | struct mapdef *tile_map[4]; /* Next map, linked list */ |
| | char path[HUGE_BUF]; /* Filename of the map */ |
} mapstruct; | | } mapstruct; |
| | |
/* This is used by get_rangevector to determine where the other | | /* This is used by get_rangevector to determine where the other |