diff options
author | Stijn Buys <ingar@osirion.org> | 2009-01-25 12:24:38 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2009-01-25 12:24:38 +0000 |
commit | 1111b6fb9d7db3d1434e03c859270e734219a528 (patch) | |
tree | 14a72d50c4165e4499ea9d05944dcf58d2a7a7ab /src/game | |
parent | 339483615a590ace6bd9f84abfa1dbc391cc1e9f (diff) |
header sanitizing
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/base/game.h | 4 | ||||
-rw-r--r-- | src/game/intro/convoy.h | 2 | ||||
-rw-r--r-- | src/game/intro/intro.h | 6 |
3 files changed, 9 insertions, 3 deletions
diff --git a/src/game/base/game.h b/src/game/base/game.h index 9f31f4f..0ea0d37 100644 --- a/src/game/base/game.h +++ b/src/game/base/game.h @@ -13,7 +13,9 @@ #include "base/ship.h" #include "base/shipmodel.h" #include "base/star.h" -#include "core/core.h" +#include "core/module.h" +#include "core/application.h" +#include "core/gameinterface.h" #include "filesystem/inifile.h" #include "sys/sys.h" diff --git a/src/game/intro/convoy.h b/src/game/intro/convoy.h index 14016f4..2002164 100644 --- a/src/game/intro/convoy.h +++ b/src/game/intro/convoy.h @@ -9,7 +9,7 @@ #include <list> -#include "core/core.h" +#include "core/entity.h" #include "math/color.h" namespace intro { diff --git a/src/game/intro/intro.h b/src/game/intro/intro.h index 2e2f8fb..d6d8393 100644 --- a/src/game/intro/intro.h +++ b/src/game/intro/intro.h @@ -7,7 +7,11 @@ #ifndef __INCLUDED_INTRO_H__ #define __INCLUDED_INTRO_H__ -#include "core/core.h" +#include "core/module.h" +#include "core/player.h" +#include "core/cvar.h" +#include "core/entity.h" +#include "core/func.h" #include "intro/convoy.h" /// introduction game module |