summaryrefslogtreecommitdiff
path: root/namegen.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-02-05 23:03:12 +0000
committertron <tron@openttd.org>2005-02-05 23:03:12 +0000
commit8f68e8def11fe081b81e42e47031c4f4c6264ff2 (patch)
treea8a04d4e2d845ab7612bac0a7d2e41a7b12f23ea /namegen.h
parentc753037d874840d328aa7bcdd9d71477f2c57af9 (diff)
downloadopenttd-8f68e8def11fe081b81e42e47031c4f4c6264ff2.tar.xz
(svn r1810) Move town name generation declarations into a header of their own
Diffstat (limited to 'namegen.h')
-rw-r--r--namegen.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/namegen.h b/namegen.h
new file mode 100644
index 000000000..d1a0ca990
--- /dev/null
+++ b/namegen.h
@@ -0,0 +1,8 @@
+#ifndef NAMEGEN_H
+#define NAMEGEN_H
+
+typedef byte TownNameGenerator(byte *buf, uint32 seed);
+
+extern TownNameGenerator * const _town_name_generators[];
+
+#endif