(svn r15740) -Codechange: make code in namegen.cpp ~50% faster, apply coding style and add comments

This commit is contained in:
smatz
2009-03-16 10:51:49 +00:00
parent 5df06384d3
commit 38056dabdf
3 changed files with 552 additions and 394 deletions

View File

@@ -2,11 +2,9 @@
/** @file namegen_func.h Town name generator stuff. */
#ifndef NAMEGEN_H
#define NAMEGEN_H
#ifndef NAMEGEN_FUNC_H
#define NAMEGEN_FUNC_H
typedef byte TownNameGenerator(char *buf, uint32 seed, const char *last);
char *GenerateTownNameString(char *buf, const char *last, size_t lang, uint32 seed);
extern TownNameGenerator * const _town_name_generators[];
#endif /* NAMEGEN_H */
#endif /* NAMEGEN_FUNC_H */