X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=templates%2Fdungeon.c.tpl;fp=templates%2Fdungeon.c.tpl;h=dbc28a6c8f4db54297c7e08b9b902ee721115a7a;hp=0000000000000000000000000000000000000000;hb=319c5830c835b86cdcaa56e2ba9bdb50549e9186;hpb=8765f49fdc85e804490ebda4b0b6caee32a45af2 diff --git a/templates/dungeon.c.tpl b/templates/dungeon.c.tpl new file mode 100644 index 0000000..dbc28a6 --- /dev/null +++ b/templates/dungeon.c.tpl @@ -0,0 +1,51 @@ +#include "{h_file}" + +const char* arbitrary_messages[] = {{ +{arbitrary_messages} +}}; + +const class_t classes[] = {{ +{classes} +}}; + +const turn_threshold_t turn_thresholds[] = {{ +{turn_thresholds} +}}; + +const location_t locations[] = {{ +{locations} +}}; + +const object_t objects[] = {{ +{objects} +}}; + +const obituary_t obituaries[] = {{ +{obituaries} +}}; + +const hint_t hints[] = {{ +{hints} +}}; + +long conditions[] = {{ +{conditions} +}}; + +const motion_t motions[] = {{ +{motions} +}}; + +const action_t actions[] = {{ +{actions} +}}; + +const long tkey[] = {{{tkeys}}}; + +const travelop_t travel[] = {{ +{travel} +}}; + +const char *ignore = "{ignore}"; + +/* end */ \ No newline at end of file