OSDN Git Service

9bdbc8354abad48faa0b16699a0f2dd5613288fd
[starfighter-jp/starfighter-jp.git] / src / Starfighter.h
1 /*
2 Copyright (C) 2003 Parallel Realities
3 Copyright (C) 2011 Guus Sliepen
4 Copyright (C) 2015, 2016 onpon4 <onpon4@riseup.net>
5
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 3
9 of the License, or (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef STARFIGHTER_H
21 #define STARFIGHTER_H
22
23 #include <stdlib.h>
24 #include <string.h>
25 #include <time.h>
26 #include <math.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <unistd.h>
30
31 #include "SDL.h"
32 #include "SDL_image.h"
33 #include "SDL_mixer.h"
34
35 #include "defs.h"
36 #include "structs.h"
37
38 #include "alien.h"
39 #include "audio.h"
40 #include "bullet.h"
41 #include "cargo.h"
42 #include "collectable.h"
43 #include "colors.h"
44 #include "cutscene.h"
45 #include "engine.h"
46 #include "event.h"
47 #include "explosion.h"
48 #include "game.h"
49 #include "gfx.h"
50 #include "intermission.h"
51 #include "loadSave.h"
52 #include "messages.h"
53 #include "misc.h"
54 #include "missions.h"
55 #include "player.h"
56 #include "renderer.h"
57 #include "resources.h"
58 #include "screen.h"
59 #include "ship.h"
60 #include "shop.h"
61 #include "title.h"
62 #include "weapons.h"
63 #include "window.h"
64
65 #endif