X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=newdungeon.py;h=df8b19abbfa6303d7984e54c86dcba4181c859b4;hb=3e19c39f579dacb20c1c9b6fc1a26c8d106f1365;hp=21ac9e64aa223cb1030b1a153dd5875c62ea72d0;hpb=c3a2816821512b59a09866a594a9bec699193271;p=open-adventure.git diff --git a/newdungeon.py b/newdungeon.py index 21ac9e6..df8b19a 100755 --- a/newdungeon.py +++ b/newdungeon.py @@ -62,13 +62,13 @@ typedef struct {{ const char* hint; }} hint_t; -extern location_t locations[]; -extern object_description_t object_descriptions[]; -extern const char* arbitrary_messages[]; -extern const class_t classes[]; -extern turn_threshold_t turn_thresholds[]; -extern obituary_t obituaries[]; -extern hint_t hints[]; +extern const location_t locations[]; +extern const object_description_t object_descriptions[]; +extern const const char* arbitrary_messages[]; +extern const const class_t classes[]; +extern const turn_threshold_t turn_thresholds[]; +extern const obituary_t obituaries[]; +extern const hint_t hints[]; extern long conditions[]; #define NLOCATIONS {} @@ -109,23 +109,23 @@ const class_t classes[] = {{ {} }}; -turn_threshold_t turn_thresholds[] = {{ +const turn_threshold_t turn_thresholds[] = {{ {} }}; -location_t locations[] = {{ +const location_t locations[] = {{ {} }}; -object_description_t object_descriptions[] = {{ +const object_description_t object_descriptions[] = {{ {} }}; -obituary_t obituaries[] = {{ +const obituary_t obituaries[] = {{ {} }}; -hint_t hints[] = {{ +const hint_t hints[] = {{ {} }};