diff options
author | Cameron Cawley | 2020-01-02 17:32:51 +0000 |
---|---|---|
committer | Filippos Karapetis | 2020-01-11 17:34:12 +0200 |
commit | 46056aba3ca7d9f51833b1a5154f8a9cc371f340 (patch) | |
tree | 95034a9b75e7654dc4a099f7e5a8ac9511516d94 /engines/pink | |
parent | b8e94e1acd207771098bcb5c1a882b13740a850c (diff) | |
download | scummvm-rg350-46056aba3ca7d9f51833b1a5154f8a9cc371f340.tar.gz scummvm-rg350-46056aba3ca7d9f51833b1a5154f8a9cc371f340.tar.bz2 scummvm-rg350-46056aba3ca7d9f51833b1a5154f8a9cc371f340.zip |
ENGINES: Reduce winexe_*.h header includes
Diffstat (limited to 'engines/pink')
-rw-r--r-- | engines/pink/cursor_mgr.h | 2 | ||||
-rw-r--r-- | engines/pink/pink.cpp | 1 | ||||
-rw-r--r-- | engines/pink/pink.h | 3 |
3 files changed, 2 insertions, 4 deletions
diff --git a/engines/pink/cursor_mgr.h b/engines/pink/cursor_mgr.h index a08cb8e417..5e336a3e18 100644 --- a/engines/pink/cursor_mgr.h +++ b/engines/pink/cursor_mgr.h @@ -25,8 +25,6 @@ #include "common/rect.h" -#include "graphics/wincursor.h" - #include "pink/objects/object.h" namespace Pink { diff --git a/engines/pink/pink.cpp b/engines/pink/pink.cpp index afff44d718..a067d2bddf 100644 --- a/engines/pink/pink.cpp +++ b/engines/pink/pink.cpp @@ -30,6 +30,7 @@ #include "graphics/cursorman.h" #include "graphics/thumbnail.h" #include "graphics/surface.h" +#include "graphics/wincursor.h" #include "pink/pink.h" #include "pink/console.h" diff --git a/engines/pink/pink.h b/engines/pink/pink.h index 9c32abae08..ce48a900ee 100644 --- a/engines/pink/pink.h +++ b/engines/pink/pink.h @@ -29,8 +29,6 @@ #include "engines/engine.h" #include "engines/savestate.h" -#include "graphics/wincursor.h" - #include "gui/debugger.h" #include "pink/constants.h" @@ -68,6 +66,7 @@ namespace Common { namespace Graphics { class MacMenu; +class WinCursorGroup; } namespace Pink { |