namegen.h
author miham
Wed, 17 Aug 2005 12:30:07 +0000
changeset 2349 e6a55d70b372
parent 2186 db48cf29b983
child 2436 7d5df545bd5d
permissions -rw-r--r--
(svn r2875) [translations] Restored langfiles (f*cked up at 2874, sorry (problem fixed))
2186
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 1307
diff changeset
     1
/* $Id$ */
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 1307
diff changeset
     2
1306
7768d8361d88 (svn r1810) Move town name generation declarations into a header of their own
tron
parents:
diff changeset
     3
#ifndef NAMEGEN_H
7768d8361d88 (svn r1810) Move town name generation declarations into a header of their own
tron
parents:
diff changeset
     4
#define NAMEGEN_H
7768d8361d88 (svn r1810) Move town name generation declarations into a header of their own
tron
parents:
diff changeset
     5
1307
74a20969a884 (svn r1811) Use char for string handling in namegen.[ch]
tron
parents: 1306
diff changeset
     6
typedef byte TownNameGenerator(char *buf, uint32 seed);
1306
7768d8361d88 (svn r1810) Move town name generation declarations into a header of their own
tron
parents:
diff changeset
     7
7768d8361d88 (svn r1810) Move town name generation declarations into a header of their own
tron
parents:
diff changeset
     8
extern TownNameGenerator * const _town_name_generators[];
7768d8361d88 (svn r1810) Move town name generation declarations into a header of their own
tron
parents:
diff changeset
     9
7768d8361d88 (svn r1810) Move town name generation declarations into a header of their own
tron
parents:
diff changeset
    10
#endif