mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-06-26 15:09:59 +01:00
13 lines
257 B
C
13 lines
257 B
C
/* $Id$ */
|
|
|
|
/** @file namegen.h Town name generator stuff. */
|
|
|
|
#ifndef NAMEGEN_H
|
|
#define NAMEGEN_H
|
|
|
|
typedef byte TownNameGenerator(char *buf, uint32 seed, const char *last);
|
|
|
|
extern TownNameGenerator * const _town_name_generators[];
|
|
|
|
#endif /* NAMEGEN_H */
|