open-adventure/newdb.h
Jason S. Ninneman 6b75d87797 Remove some hard-coded array dimensions. Generate CLSSES at compile time.
(How did this ever even work without 'extern'?)
2017-06-12 21:36:07 +00:00

13 lines
344 B
C

typedef struct {
char* inventory;
char** longs;
} object_description_s;
extern char* long_location_descriptions[];
extern char* short_location_descriptions[];
extern object_description_s object_descriptions[];
extern char* arbitrary_messages[];
extern char* class_messages[];
extern char* turn_threshold_messages[];
extern size_t CLSSES;