diff options
author | Colin Snover | 2016-08-12 09:57:43 -0500 |
---|---|---|
committer | Colin Snover | 2016-08-19 13:57:40 -0500 |
commit | b74532fc1e3dfe034eff5df7f284feac7502b354 (patch) | |
tree | 3e7a3731c767b3bede1e0887ed0cffa458ba5263 /engines/sci | |
parent | d5bcef1e662e969d558414ef110aebd4c8e87720 (diff) | |
download | scummvm-rg350-b74532fc1e3dfe034eff5df7f284feac7502b354.tar.gz scummvm-rg350-b74532fc1e3dfe034eff5df7f284feac7502b354.tar.bz2 scummvm-rg350-b74532fc1e3dfe034eff5df7f284feac7502b354.zip |
SCI32: Clean up Cursor32 includes
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/graphics/cursor32.cpp | 9 | ||||
-rw-r--r-- | engines/sci/graphics/cursor32.h | 8 |
2 files changed, 10 insertions, 7 deletions
diff --git a/engines/sci/graphics/cursor32.cpp b/engines/sci/graphics/cursor32.cpp index a05c66e1cc..014b617c74 100644 --- a/engines/sci/graphics/cursor32.cpp +++ b/engines/sci/graphics/cursor32.cpp @@ -20,11 +20,12 @@ * */ -#include "common/system.h" -#include "graphics/cursorman.h" -#include "sci/graphics/celobj32.h" +#include "common/rational.h" // for Rational, operator* +#include "common/system.h" // for OSystem, g_system +#include "graphics/cursorman.h" // for CursorMan +#include "sci/graphics/celobj32.h" // for CelObjView, CelInfo32, Ratio #include "sci/graphics/cursor32.h" -#include "sci/graphics/frameout.h" +#include "sci/graphics/frameout.h" // for GfxFrameout namespace Sci { diff --git a/engines/sci/graphics/cursor32.h b/engines/sci/graphics/cursor32.h index fe621e9d55..d4745536b1 100644 --- a/engines/sci/graphics/cursor32.h +++ b/engines/sci/graphics/cursor32.h @@ -23,9 +23,11 @@ #ifndef SCI_GRAPHICS_CURSOR32_H #define SCI_GRAPHICS_CURSOR32_H -#include "common/rect.h" -#include "common/serializer.h" -#include "sci/graphics/helpers.h" +#include "common/rect.h" // for Point, Rect +#include "common/scummsys.h" // for int16, byte, uint8 +#include "common/serializer.h" // for Serializable, Serializer (ptr only) +#include "sci/graphics/celobj32.h" // for CelInfo32 +#include "sci/graphics/helpers.h" // for GuiResourceId namespace Sci { |