starfighter/src/Starfighter.h

68 lines
1.6 KiB
C

/*
Copyright (C) 2003 Parallel Realities
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
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
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
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#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 <SDL2/SDL.h>
#include <SDL2/SDL_image.h>
#include <SDL2/SDL_mixer.h>
#include "defs.h"
#include "structs.h"
#include "ai.h"
#include "aliens.h"
#include "audio.h"
#include "bullets.h"
#include "cargo.h"
#include "collectable.h"
#include "comms.h"
#include "debris.h"
#include "events.h"
#include "explosions.h"
#include "game.h"
#include "globals.h"
#include "graphics.h"
#include "init.h"
#include "intermission.h"
#include "loadSave.h"
#include "math.h"
#include "messages.h"
#include "misc.h"
#include "missions.h"
#include "player.h"
#include "resources.h"
#include "script.h"
#include "shop.h"
#include "title.h"
#include "version.h"
#include "weapons.h"
#endif