diff options
Diffstat (limited to 'engines/fullpipe/motion.cpp')
-rw-r--r-- | engines/fullpipe/motion.cpp | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/engines/fullpipe/motion.cpp b/engines/fullpipe/motion.cpp index 337c1817dd..42aae55361 100644 --- a/engines/fullpipe/motion.cpp +++ b/engines/fullpipe/motion.cpp @@ -74,14 +74,26 @@ bool MctlCompound::load(MfcArchive &file) { return true; } -void MctlCompound::addObject(StaticANIObject *obj) { +int MctlCompound::addObject(StaticANIObject *obj) { warning("STUB: MctlCompound::addObject()"); + + return 0; +} + +int MctlCompound::removeObject(StaticANIObject *obj) { + warning("STUB: MctlCompound::removeObject()"); + + return 0; } void MctlCompound::initMovGraph2() { warning("STUB: MctlCompound::initMovGraph2()"); } +void MctlCompound::freeItems() { + warning("STUB: MctlCompound::freeItems()"); +} + MessageQueue *MctlCompound::method34(StaticANIObject *subj, int xpos, int ypos, int flag, int staticsId) { warning("STUB: MctlCompound::method34()"); @@ -133,8 +145,10 @@ bool MovGraph::load(MfcArchive &file) { return true; } -void MovGraph::addObject(StaticANIObject *obj) { +int MovGraph::addObject(StaticANIObject *obj) { warning("STUB: MovGraph::addObject()"); + + return 0; } double MovGraph::calcDistance(Common::Point *point, MovGraphLink *link, int flag) { |