aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/cursor_mgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pink/cursor_mgr.h')
-rw-r--r--engines/pink/cursor_mgr.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/engines/pink/cursor_mgr.h b/engines/pink/cursor_mgr.h
index 4f10d2266a..391fcd3bb6 100644
--- a/engines/pink/cursor_mgr.h
+++ b/engines/pink/cursor_mgr.h
@@ -33,24 +33,25 @@ namespace Pink {
class Actor;
class Action;
-class GamePage;
+class Page;
class PinkEngine;
class CursorMgr : public Object {
public:
- CursorMgr(PinkEngine *game, GamePage *page);
- ~CursorMgr();
+ CursorMgr(PinkEngine *game, Page *page);
void update();
- void setCursor(uint index, Common::Point point, const Common::String &itemName);
- void setCursor(Common::String &cursorName, Common::Point point);
+ void setCursor(uint index, const Common::Point point, const Common::String &itemName);
+ void setCursor(const Common::String &cursorName, const Common::Point point);
+
+ void setPage(Page *page);
private:
void hideItem();
void startAnimation(int index);
Actor *_actor;
- GamePage *_page;
+ Page *_page;
PinkEngine *_game;
uint _time;