diff options
| author | Max Horn | 2009-12-09 21:03:22 +0000 | 
|---|---|---|
| committer | Max Horn | 2009-12-09 21:03:22 +0000 | 
| commit | f3420c63721dd6a8d857d9c44f794c83beaa7cf8 (patch) | |
| tree | 80a9097dc2de4825af4d1e7160e0cf5a0b9f9c6a /engines/draci/mouse.cpp | |
| parent | 5cd176052c0016516b04ef208a9e262a4200920a (diff) | |
| download | scummvm-rg350-f3420c63721dd6a8d857d9c44f794c83beaa7cf8.tar.gz scummvm-rg350-f3420c63721dd6a8d857d9c44f794c83beaa7cf8.tar.bz2 scummvm-rg350-f3420c63721dd6a8d857d9c44f794c83beaa7cf8.zip | |
DRACI: Reduce header interdependencies; some cleanup
svn-id: r46320
Diffstat (limited to 'engines/draci/mouse.cpp')
| -rw-r--r-- | engines/draci/mouse.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/engines/draci/mouse.cpp b/engines/draci/mouse.cpp index 4d15d2e3f6..15fcc42760 100644 --- a/engines/draci/mouse.cpp +++ b/engines/draci/mouse.cpp @@ -27,6 +27,10 @@  #include "draci/game.h"  #include "draci/mouse.h"  #include "draci/barchive.h" +#include "draci/screen.h" +#include "draci/sprite.h" + +#include "graphics/cursorman.h"  namespace Draci { @@ -123,4 +127,4 @@ void Mouse::loadItemCursor(const GameItem *item, bool highlighted) {  	        sp.getWidth() / 2, sp.getHeight() / 2);  } -} +} // End of namespace Draci | 
