2 Copyright (C) 2004-2011 Parallel Realities
3 Copyright (C) 2011-2015 Perpendicular Dimensions
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14 See the GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
31 #include <SDL_image/SDL_image.h>
32 #include <SDL_mixer/SDL_mixer.h>
33 #include <SDL_ttf/SDL_ttf.h>
34 #include <SDL_net/SDL_net.h>
35 #include <CoreFoundation/CoreFoundation.h>
36 extern C_LINKAGE void openHelpURL();
38 extern DECLSPEC int SDLCALL SDL_GetGamma(float *red, float *green, float *blue);
42 #include "SDL2/SDL_image.h"
43 #include "SDL2/SDL_mixer.h"
44 #include "SDL2/SDL_ttf.h"
45 #include "SDL2/SDL_net.h"
50 #define _(string) gettext(string)
53 #define gettext(x) (x)
54 #define bindtextdomain(x, y) while(false)
55 #define textdomain(x) while(false)
58 #if !defined(OpenBSD) && !defined(FreeBSD)
59 #define strlcat(dest, src, n) strncat((dest), (src), (n) - 1)
60 #define strlcpy(dest, src, n) do {strncpy((dest), (src), (n)); (dest)[(n) - 1] = 0;} while(false)
67 #include "CGameObject.h"
72 #include "CParticle.h"
77 #include "CSpawnPoint.h"
80 #include "CObjective.h"
81 #include "CTeleporter.h"
85 #include "CPersistData.h"
86 #include "CPersistant.h"
90 #include "CCollision.h"
94 #include "CFileData.h"
97 #include "CJoystick.h"
98 #include "CKeyboard.h"
101 #include "CGraphics.h"
105 #include "CGameData.h"
108 #include "CRadarBlip.h"
110 #include "CCutscene.h"
112 #include "CReplayDataHeader.h"
113 #include "CReplayData.h"
115 #include "CMedalServer.h"