diff options
author | Johannes Schickel | 2011-10-09 22:58:37 +0200 |
---|---|---|
committer | Johannes Schickel | 2011-10-09 22:58:37 +0200 |
commit | 7b126c5f24de2141faca9267a785b6af4a0066e2 (patch) | |
tree | 81f728075fed25e1354f3e6b6c667a170a93085e /engines/made/resource.h | |
parent | 76bc3a97a663ad46563b9792dd19061d844dd300 (diff) | |
download | scummvm-rg350-7b126c5f24de2141faca9267a785b6af4a0066e2.tar.gz scummvm-rg350-7b126c5f24de2141faca9267a785b6af4a0066e2.tar.bz2 scummvm-rg350-7b126c5f24de2141faca9267a785b6af4a0066e2.zip |
MADE: Minimize #include usage.
Diffstat (limited to 'engines/made/resource.h')
-rw-r--r-- | engines/made/resource.h | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/engines/made/resource.h b/engines/made/resource.h index 8ffebfef50..1ce01aab6f 100644 --- a/engines/made/resource.h +++ b/engines/made/resource.h @@ -23,15 +23,23 @@ #ifndef MADE_RESOURCE_H #define MADE_RESOURCE_H -#include "common/util.h" -#include "common/file.h" -#include "common/stream.h" +#include "made/sound.h" + +#include "common/endian.h" +#include "common/array.h" #include "common/hashmap.h" -#include "common/textconsole.h" -#include "graphics/surface.h" -#include "audio/audiostream.h" -#include "made/sound.h" +namespace Common { +class File; +} + +namespace Audio { +class AudioStream; +} + +namespace Graphics { +class Surface; +} namespace Made { |