AGOS: Reduce header interdependencies

svn-id: r55843
This commit is contained in:
Max Horn 2011-02-09 00:13:42 +00:00
parent 4cfa520dce
commit ee7056542c
3 changed files with 6 additions and 3 deletions

View file

@ -35,9 +35,6 @@
#include "common/stack.h" #include "common/stack.h"
#include "common/util.h" #include "common/util.h"
#ifdef ENABLE_AGOS2
#include "agos/animation.h"
#endif
#include "agos/midi.h" #include "agos/midi.h"
#include "agos/sound.h" #include "agos/sound.h"
#include "agos/vga.h" #include "agos/vga.h"
@ -61,6 +58,10 @@ uint fileReadItemID(Common::SeekableReadStream *in);
#define CHECK_BOUNDS(x, y) assert((uint)(x) < ARRAYSIZE(y)) #define CHECK_BOUNDS(x, y) assert((uint)(x) < ARRAYSIZE(y))
#ifdef ENABLE_AGOS2
class MoviePlayer;
#endif
struct Child; struct Child;
struct SubObject; struct SubObject;

View file

@ -26,6 +26,7 @@
#include "agos/agos.h" #include "agos/agos.h"
#include "agos/animation.h"
#include "agos/debugger.h" #include "agos/debugger.h"
#include "agos/intern.h" #include "agos/intern.h"

View file

@ -31,6 +31,7 @@
#include "agos/intern.h" #include "agos/intern.h"
#include "agos/agos.h" #include "agos/agos.h"
#include "agos/animation.h"
namespace AGOS { namespace AGOS {