1 /*
2 Copyright (C) 2004 Parallel Realities
3 
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8 
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 
13 See the GNU General Public License for more details.
14 
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18 
19 */
20 
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <string.h>
24 #include <math.h>
25 #include <zlib.h>
26 
27 #include "SDL/SDL.h"
28 #include "SDL/SDL_image.h"
29 #include "SDL/SDL_mixer.h"
30 #include "SDL/SDL_ttf.h"
31 #include "SDL/SDL_net.h"
32 
33 #include "defs.h"
34 #include "CGameObject.h"
35 
36 #include "CList.h"
37 
38 #include "CMath.h"
39 #include "CData.h"
40 #include "CWidget.h"
41 
42 #include "CSprite.h"
43 
44 #include "CCollision.h"
45 
46 #include "CFileData.h"
47 #include "CPak.h"
48 #include "CEngine.h"
49 #include "CGraphics.h"
50 #include "CAudio.h"
51 
52 #include "CHighScore.h"
53 
54 #include "CParticle.h"
55 
56 #include "CDirectory.h"
57 #include "CFile.h"
58 #include "CBase.h"
59 #include "CVirus.h"
60 #include "CItem.h"
61 #include "CGameData.h"
62 
63 #include "CMedalServer.h"
64 
65