mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-19 15:25:39 +00:00
11 lines
229 B
C
11 lines
229 B
C
/* $Id$ */
|
|
|
|
/** @file namegen_func.h Town name generator stuff. */
|
|
|
|
#ifndef NAMEGEN_FUNC_H
|
|
#define NAMEGEN_FUNC_H
|
|
|
|
char *GenerateTownNameString(char *buf, const char *last, size_t lang, uint32 seed);
|
|
|
|
#endif /* NAMEGEN_FUNC_H */
|