00001 /* 00002 Copyright (C) 2004 Parallel Realities 00003 00004 This program is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU General Public License 00006 as published by the Free Software Foundation; either version 2 00007 of the License, or (at your option) any later version. 00008 00009 This program is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00012 00013 See the GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with this program; if not, write to the Free Software 00017 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00018 00019 */ 00020 00021 #include <stdlib.h> 00022 #include <string.h> 00023 #include <math.h> 00024 00025 #include <zlib.h> 00026 00027 #include "SDL/SDL.h" 00028 #include "SDL/SDL_image.h" 00029 #include "SDL/SDL_mixer.h" 00030 #include "SDL/SDL_ttf.h" 00031 00032 #include "defs.h" 00033 00034 #include "CMath.h" 00035 00036 #include "CGameObject.h" 00037 #include "CList.h" 00038 00039 #include "CSprite.h" 00040 #include "CData.h" 00041 #include "CParticle.h" 00042 #include "CWeapon.h" 00043 #include "CEntity.h" 00044 #include "CBoss.h" 00045 #include "CTrain.h" 00046 #include "CSpawnPoint.h" 00047 #include "CSwitch.h" 00048 #include "CEffect.h" 00049 #include "CObjective.h" 00050 #include "CTeleporter.h" 00051 #include "CLineDef.h" 00052 #include "CTrap.h" 00053 00054 #include "CPersistData.h" 00055 #include "CPersistant.h" 00056 00057 #include "CMap.h" 00058 00059 #include "CCollision.h" 00060 00061 #include "CWidget.h" 00062 00063 #include "CFileData.h" 00064 #include "CPak.h" 00065 00066 #include "CJoystick.h" 00067 #include "CKeyboard.h" 00068 00069 #include "CEngine.h" 00070 #include "CGraphics.h" 00071 #include "CAudio.h" 00072 00073 #include "CGame.h" 00074 #include "CGameData.h" 00075 00076 #include "CHub.h" 00077 #include "CRadarBlip.h" 00078 00079 #include "CCutscene.h"