Typo fix.
[open-adventure.git] / templates / dungeon.c.tpl
1 /*
2 SPDX-FileCopyrightText: Copyright Eric S. Raymond <esr@thyrsus.com>
3 SPDX-License-Identifier: BSD-2-Clause
4 */
5
6 #include "{h_file}"
7
8 const char* arbitrary_messages[] = {{
9 {arbitrary_messages}
10 }};
11
12 const class_t classes[] = {{
13 {classes}
14 }};
15
16 const turn_threshold_t turn_thresholds[] = {{
17 {turn_thresholds}
18 }};
19
20 const location_t locations[] = {{
21 {locations}
22 }};
23
24 const object_t objects[] = {{
25 {objects}
26 }};
27
28 const obituary_t obituaries[] = {{
29 {obituaries}
30 }};
31
32 const hint_t hints[] = {{
33 {hints}
34 }};
35
36 long conditions[] = {{
37 {conditions}
38 }};
39
40 const motion_t motions[] = {{
41 {motions}
42 }};
43
44 const action_t actions[] = {{
45 {actions}
46 }};
47
48 const long tkey[] = {{{tkeys}}};
49
50 const travelop_t travel[] = {{
51 {travel}
52 }};
53
54 const char *ignore = "{ignore}";
55
56 /* Dwarf starting locations */
57 const int dwarflocs[NDWARVES] = {{{dwarflocs}}};
58
59 /* end */