summaryrefslogtreecommitdiff
path: root/src/townname_func.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-05-01 19:14:12 +0000
committerrubidium <rubidium@openttd.org>2011-05-01 19:14:12 +0000
commit1a515e6344028854c855671c19f49d8f869eb18f (patch)
treee1bba97c1a8fd80f564729cc2d5fc2049110cb2a /src/townname_func.h
parentb27dd1dcd7375dae63724879eb0f56dd703e5312 (diff)
downloadopenttd-1a515e6344028854c855671c19f49d8f869eb18f.tar.xz
(svn r22405) -Document: some more "random-ish" tidbits
Diffstat (limited to 'src/townname_func.h')
-rw-r--r--src/townname_func.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/townname_func.h b/src/townname_func.h
index 39db34b29..0d65fc16b 100644
--- a/src/townname_func.h
+++ b/src/townname_func.h
@@ -12,10 +12,12 @@
#ifndef TOWNNAME_FUNC_H
#define TOWNNAME_FUNC_H
+#include "townname_type.h"
+
char *GenerateTownNameString(char *buf, const char *last, size_t lang, uint32 seed);
-char *GetTownName(char *buff, const struct TownNameParams *par, uint32 townnameparts, const char *last);
-char *GetTownName(char *buff, const struct Town *t, const char *last);
-bool VerifyTownName(uint32 r, const struct TownNameParams *par);
+char *GetTownName(char *buff, const TownNameParams *par, uint32 townnameparts, const char *last);
+char *GetTownName(char *buff, const Town *t, const char *last);
+bool VerifyTownName(uint32 r, const TownNameParams *par);
bool GenerateTownName(uint32 *townnameparts);
#endif /* TOWNNAME_FUNC_H */