aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/actors/actor.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pink/objects/actors/actor.h')
-rw-r--r--engines/pink/objects/actors/actor.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/pink/objects/actors/actor.h b/engines/pink/objects/actors/actor.h
index b4fe437cf5..037b8b5408 100644
--- a/engines/pink/objects/actors/actor.h
+++ b/engines/pink/objects/actors/actor.h
@@ -29,7 +29,7 @@
namespace Pink {
-class GamePage;
+class Page;
class Action;
class Sequencer;
class Director;
@@ -48,7 +48,7 @@ public:
virtual void toConsole();
Sequencer *getSequencer() const;
- GamePage *getPage() const;
+ Page *getPage() const;
Action *getAction() const;
bool isPlaying();
@@ -61,6 +61,8 @@ public:
void setAction(Action *newAction);
void setAction(Action *newAction, bool unk);
+ void setPage(Page *page);
+
void loadState(Archive &archive);
void saveState(Archive &archive);
@@ -77,7 +79,7 @@ public:
virtual void unpause();
protected:
- GamePage *_page;
+ Page *_page;
Action *_action;
Array<Action *> _actions;
bool _isActionEnded;