1 /* ---------------------------------------------------------------------- *
2  * engine.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 __engine_h__
7 #define __engine_h__
8 
9 int place_item (int x, int y, short type);
10 int bulldoze_item (int x, int y);
11 void do_coal_survey (void);
12 void do_bulldoze_area (short fill, int xx, int yy);
13 void launch_rocket (int x, int y);
14 void connect_rivers (void);
15 int adjust_money(int value);
16 
17 #endif	/* __engine_h__ */
18