]> git.mxchange.org Git - quix0rs-blobwars.git/blob - src/headers.h
Import of version 1.14 minus music and sounds.
[quix0rs-blobwars.git] / src / headers.h
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 <string.h>
23 #include <math.h>
24
25 #include <zlib.h>
26
27 #ifdef FRAMEWORK_SDL
28 #include <SDL/SDL.h>
29 #include <SDL_image/SDL_image.h>
30 #include <SDL_mixer/SDL_mixer.h>
31 #include <SDL_ttf/SDL_ttf.h>
32 #include <CoreFoundation/CoreFoundation.h>
33 extern C_LINKAGE void openHelpURL();
34 #ifndef SDL_GetGamma
35 extern DECLSPEC int SDLCALL SDL_GetGamma(float *red, float *green, float *blue);
36 #endif
37 #else
38 #include "SDL/SDL.h"
39 #include "SDL/SDL_image.h"
40 #include "SDL/SDL_mixer.h"
41 #include "SDL/SDL_ttf.h"
42 #endif
43
44 #include <libintl.h>
45 #define _(string) gettext(string)
46
47 #include "defs.h"
48
49 #include "CMath.h"
50
51 #include "CGameObject.h"
52 #include "CList.h"
53
54 #include "CSprite.h"
55 #include "CData.h"
56 #include "CParticle.h"
57 #include "CWeapon.h"
58 #include "CEntity.h"
59 #include "CBoss.h"
60 #include "CTrain.h"
61 #include "CSpawnPoint.h"
62 #include "CSwitch.h"
63 #include "CEffect.h"
64 #include "CObjective.h"
65 #include "CTeleporter.h"
66 #include "CLineDef.h"
67 #include "CTrap.h"
68
69 #include "CPersistData.h"
70 #include "CPersistant.h"
71
72 #include "CMap.h"
73
74 #include "CCollision.h"
75
76 #include "CWidget.h"
77
78 #include "CFileData.h"
79 #include "CPak.h"
80
81 #include "CJoystick.h"
82 #include "CKeyboard.h"
83
84 #include "CEngine.h"
85 #include "CGraphics.h"
86 #include "CAudio.h"
87
88 #include "CGame.h"
89 #include "CGameData.h"
90
91 #include "CHub.h"
92 #include "CRadarBlip.h"
93
94 #include "CCutscene.h"
95
96 #include "CReplayDataHeader.h"
97 #include "CReplayData.h"
98 #include "CConfig.h"