forked from github/server
bb1ba6b366
salvage some mapper functionality and stuff it in there (and cleanup), then the mapper/ directory can go.
17 lines
622 B
C
17 lines
622 B
C
/* vi: set ts=2:
|
|
* +-------------------+ Christian Schlittchen <corwin@amber.kn-bremen.de>
|
|
* | | Enno Rehling <enno@eressea.de>
|
|
* | Eressea PBEM host | Katja Zedel <katze@felidae.kn-bremen.de>
|
|
* | (c) 1998 - 2006 |
|
|
* | | This program may not be used, modified or distributed
|
|
* +-------------------+ without prior permission by the authors of Eressea.
|
|
*
|
|
*/
|
|
|
|
#ifndef GM_EDITING
|
|
#define GM_EDITING
|
|
|
|
extern void make_block(short x, short y, short radius, const struct terrain_type * terrain);
|
|
extern void make_island(short x, short y, int size);
|
|
|
|
#endif /* GM_EDITING */
|