1 /* ---------------------------------------------------------------------- *
2  * simulate.h
3  * This file is part of lincity.
4  * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001.
5  * ---------------------------------------------------------------------- */
6 #ifndef __simulate_h__
7 #define __simulate_h__
8 
9 void clear_mappoint (short fill, int x, int y);
10 void new_city (int* originx, int* originy, int random_village);
11 void count_all_groups (int* group_count);
12 void do_time_step (void);
13 
14 #endif	/* __simulate_h__ */
15