version 1.46 | | version 1.47 |
---|
| | |
/* | | /* |
* static char *rcsid_object_h = | | * static char *rcsid_object_h = |
* "$Id: object.h,v 1.46 2006/02/10 23:59:26 akirschbaum Exp $"; | | * "$Id: object.h,v 1.47 2006/03/18 15:05:32 ryo_saeba Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
| | |
/* See common/item.c */ | | /* See common/item.c */ |
| | |
typedef struct Body_Locations { | | typedef struct body_locations_struct { |
const char *save_name; /* Name used to load/save it to disk */ | | const char *save_name; /* Name used to load/save it to disk */ |
const char *use_name; /* Name used when describing an item we can use */ | | const char *use_name; /* Name used when describing an item we can use */ |
const char *nonuse_name; /* Name to describe objects we can't use */ | | const char *nonuse_name; /* Name to describe objects we can't use */ |
} Body_Locations; | | } body_locations_struct; |
| | |
extern Body_Locations body_locations[NUM_BODY_LOCATIONS]; | | extern body_locations_struct body_locations[NUM_BODY_LOCATIONS]; |
| | |
typedef struct _event | | typedef struct _event |
{ | | { |