1 /*
2  *	xtrojka (c) 1994,1995,1996 Maarten Los
3  *
4  *	#include "COPYRIGHT"
5  *
6  *	created:	12.iii.1996
7  *	modified:
8  *
9  *	header file for sh_main.c
10  */
11 
12 #ifndef _sh_main_h_
13 #define _sh_main_h_
14 
15 /*
16  *	dimensions of a block
17  */
18 #define BLOCK_XSIZE	36
19 #define BLOCK_YSIZE	19
20 
21 /*
22  *	location of the game-title
23  */
24 #define TITLE_X		3
25 #define TITLE_Y		100
26 
27 /*
28  *	function prototypes
29  */
30 void show_score(void);
31 void trojka_speedup_callback(int);
32 void show_speed(int);
33 void redraw_leftpillar(Widget, XExposeEvent *, String *, Cardinal *);
34 void redraw_rightpillar(Widget, XExposeEvent *, String *, Cardinal *);
35 void redraw_screen(Widget, XExposeEvent *, String *, Cardinal *);
36 void draw_field(void);
37 void draw_title(void);
38 void redraw_screen(Widget, XExposeEvent  *, String *, Cardinal *);
39 
40 
41 #endif /* _sh_main_h_ */
42