aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/motion.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/fullpipe/motion.h')
-rw-r--r--engines/fullpipe/motion.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/engines/fullpipe/motion.h b/engines/fullpipe/motion.h
index 7c25080485..c08d56fd8c 100644
--- a/engines/fullpipe/motion.h
+++ b/engines/fullpipe/motion.h
@@ -276,11 +276,14 @@ struct MovGraphItem {
};
class MovGraph : public MotionController {
-public:
+friend class MctlCompound;
+friend class MctlGraph;
+friend class MotionController;
+private:
ObList _nodes;
ObList _links;
int _field_44;
- Common::Array<MovGraphItem *> _items;
+ Common::Array<MovGraphItem> _items;
MovArr *(*_callback1)(StaticANIObject *ani, Common::Array<MovItem *> *items, signed int counter);
AniHandler _aniHandler;
@@ -288,6 +291,8 @@ public:
MovGraph();
virtual ~MovGraph();
+ static int messageHandler(ExCommand *cmd);
+
virtual bool load(MfcArchive &file);
virtual void attachObject(StaticANIObject *obj);