2011-08-24 14:14:44 +02:00
|
|
|
/*
|
|
|
|
Copyright (C) 2003 Parallel Realities
|
2015-03-01 21:37:32 +01:00
|
|
|
Copyright (C) 2011 Guus Sliepen
|
2016-01-02 22:59:48 +01:00
|
|
|
Copyright (C) 2015, 2016 onpon4 <onpon4@riseup.net>
|
2011-08-24 14:14:44 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
2015-02-26 17:20:36 +01:00
|
|
|
as published by the Free Software Foundation; either version 3
|
2011-08-24 14:14:44 +02:00
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-02-26 17:20:36 +01:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2011-08-24 14:14:44 +02:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2015-02-26 17:20:36 +01:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2011-08-24 14:14:44 +02:00
|
|
|
*/
|
|
|
|
|
2015-03-04 15:11:04 +01:00
|
|
|
#ifndef STARFIGHTER_H
|
|
|
|
#define STARFIGHTER_H
|
2011-08-26 21:29:04 +02:00
|
|
|
|
2011-08-24 14:14:44 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2011-08-26 21:29:04 +02:00
|
|
|
#include <time.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2011-08-24 14:14:44 +02:00
|
|
|
|
2015-03-01 20:26:14 +01:00
|
|
|
#include "SDL.h"
|
|
|
|
#include "SDL_image.h"
|
|
|
|
#include "SDL_mixer.h"
|
2011-08-24 14:14:44 +02:00
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "structs.h"
|
|
|
|
|
2015-03-10 00:32:03 +01:00
|
|
|
#include "alien.h"
|
2011-08-26 21:29:04 +02:00
|
|
|
#include "audio.h"
|
2015-03-13 03:14:07 +01:00
|
|
|
#include "bullet.h"
|
2011-08-26 21:29:04 +02:00
|
|
|
#include "cargo.h"
|
|
|
|
#include "collectable.h"
|
2015-06-20 17:31:41 +02:00
|
|
|
#include "colors.h"
|
2015-05-21 01:49:37 +02:00
|
|
|
#include "engine.h"
|
2016-01-03 04:37:44 +01:00
|
|
|
#include "event.h"
|
2015-05-01 00:51:26 +02:00
|
|
|
#include "explosion.h"
|
2011-08-26 21:29:04 +02:00
|
|
|
#include "game.h"
|
2015-09-26 14:49:21 +02:00
|
|
|
#include "gfx.h"
|
2011-08-26 21:29:04 +02:00
|
|
|
#include "intermission.h"
|
|
|
|
#include "loadSave.h"
|
|
|
|
#include "messages.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "missions.h"
|
|
|
|
#include "player.h"
|
2015-10-27 01:07:31 +01:00
|
|
|
#include "renderer.h"
|
2011-08-26 21:29:04 +02:00
|
|
|
#include "resources.h"
|
2015-09-26 14:49:21 +02:00
|
|
|
#include "screen.h"
|
2011-08-26 21:29:04 +02:00
|
|
|
#include "script.h"
|
2015-03-13 15:10:58 +01:00
|
|
|
#include "ship.h"
|
2011-08-26 21:29:04 +02:00
|
|
|
#include "shop.h"
|
|
|
|
#include "title.h"
|
|
|
|
#include "weapons.h"
|
2015-10-11 18:04:52 +02:00
|
|
|
#include "window.h"
|
2011-08-24 14:14:44 +02:00
|
|
|
|
2011-08-26 21:29:04 +02:00
|
|
|
#endif
|