aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/motion.h
diff options
context:
space:
mode:
authorEugene Sandulenko2014-01-04 01:02:12 +0200
committerEugene Sandulenko2014-01-04 01:02:12 +0200
commit5b2acd514f5c8f83efdb61e84805d785bef0a9d2 (patch)
tree99657a1e79a129771157b6af9903e0afea88300e /engines/fullpipe/motion.h
parent6854decc0089dc42a69600cf826cc1d323b8681b (diff)
downloadscummvm-rg350-5b2acd514f5c8f83efdb61e84805d785bef0a9d2.tar.gz
scummvm-rg350-5b2acd514f5c8f83efdb61e84805d785bef0a9d2.tar.bz2
scummvm-rg350-5b2acd514f5c8f83efdb61e84805d785bef0a9d2.zip
FULLPIPE: Implement Floaters::update()
Diffstat (limited to 'engines/fullpipe/motion.h')
-rw-r--r--engines/fullpipe/motion.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/fullpipe/motion.h b/engines/fullpipe/motion.h
index 6ca24a303f..1e813eec57 100644
--- a/engines/fullpipe/motion.h
+++ b/engines/fullpipe/motion.h
@@ -253,16 +253,20 @@ public:
};
class ReactPolygonal : public MovGraphReact {
- //CRgn _rgn;
+ Common::Rect *_bbox;
int _centerX;
int _centerY;
public:
ReactPolygonal();
+ ~ReactPolygonal();
+
virtual bool load(MfcArchive &file);
virtual void setCenter(int x1, int y1, int x2, int y2);
virtual void createRegion();
+
+ void getBBox(Common::Rect *rect);
};
class MovGraphLink : public CObject {