1 /* ---------------------------------------------------------------------- *
2  * common.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 __common_h__
7 #define __common_h__
8 
9 #ifdef LC_X11
10 #include <X11/Xlib.h>
11 #include <X11/Xatom.h>
12 #include <X11/Xutil.h>
13 #include "lin-city.h"
14 #include "lcx11.h"
15 
16 #elif defined WIN32
17 #include <windows.h>
18 #include "lcwin32.h"
19 
20 #elif defined SVGALIB
21 #include <vga.h>
22 #include <vgagl.h>
23 #include <vgamouse.h>
24 #include "lcsvga.h"
25 
26 #endif
27 
28 #endif	/* __common_h__ */
29