starfighter/src/Starfighter.h

66 lines
1.5 KiB
C
Raw Normal View History

/*
Copyright (C) 2003 Parallel Realities
Copyright (C) 2011 Guus Sliepen
2016-01-02 22:59:48 +01:00
Copyright (C) 2015, 2016 onpon4 <onpon4@riseup.net>
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
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.
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/>.
*/
#ifndef STARFIGHTER_H
#define STARFIGHTER_H
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <math.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "SDL.h"
#include "SDL_image.h"
#include "SDL_mixer.h"
#include "defs.h"
#include "structs.h"
2015-03-10 00:32:03 +01:00
#include "alien.h"
#include "audio.h"
#include "bullet.h"
#include "cargo.h"
#include "collectable.h"
#include "colors.h"
2016-01-05 02:17:06 +01:00
#include "cutscene.h"
2015-05-21 01:49:37 +02:00
#include "engine.h"
#include "event.h"
2015-05-01 00:51:26 +02:00
#include "explosion.h"
#include "game.h"
2015-09-26 14:49:21 +02:00
#include "gfx.h"
#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"
#include "resources.h"
2015-09-26 14:49:21 +02:00
#include "screen.h"
#include "ship.h"
#include "shop.h"
#include "title.h"
#include "weapons.h"
2015-10-11 18:04:52 +02:00
#include "window.h"
#endif