forked from github/server
18 lines
622 B
C
18 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 */
|