mirror of
https://github.com/OpenTTD/OpenTTD
synced 2026-01-16 08:52:40 +01:00
13 lines
262 B
C
13 lines
262 B
C
/* $Id$ */
|
|
|
|
/** @file namegen_func.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 */
|