(svn r1810) Move town name generation declarations into a header of their own

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
tron 20 years ago
parent 31e098e64e
commit 80776172a5

@ -1,6 +1,7 @@
#include "stdafx.h"
#include "ttd.h"
#include "debug.h"
#include "namegen.h"
#include "table/namegen.h"
static inline uint32 SeedChance(int shift_by, int max, uint32 seed)

@ -0,0 +1,8 @@
#ifndef NAMEGEN_H
#define NAMEGEN_H
typedef byte TownNameGenerator(byte *buf, uint32 seed);
extern TownNameGenerator * const _town_name_generators[];
#endif

@ -1,6 +1,7 @@
#include "stdafx.h"
#include "ttd.h"
#include "table/strings.h"
#include "namegen.h"
#include "station.h"
#include "town.h"
#include "vehicle.h"

@ -378,9 +378,6 @@ typedef struct {
VARDEF CargoConst _cargoc;
typedef byte TownNameGenerator(byte *buf, uint32 seed);
extern TownNameGenerator * const _town_name_generators[];
static inline void SetDParamX(uint32 *s, uint n, uint32 v)
{

Loading…
Cancel
Save