aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/statics.h
diff options
context:
space:
mode:
authorEugene Sandulenko2013-08-06 21:31:48 +0300
committerEugene Sandulenko2013-09-06 14:51:11 +0300
commit8a84a1133fcc21a4115826755bfa1a534b735815 (patch)
tree820b2e488da60bdd9bbc607487adb6bca509a221 /engines/fullpipe/statics.h
parent6d92638e7f1eba7d348488cee693ad4c0ab4ce0a (diff)
downloadscummvm-rg350-8a84a1133fcc21a4115826755bfa1a534b735815.tar.gz
scummvm-rg350-8a84a1133fcc21a4115826755bfa1a534b735815.tar.bz2
scummvm-rg350-8a84a1133fcc21a4115826755bfa1a534b735815.zip
FULLPIPE: Implement copy constructor for StaticANIObject
Diffstat (limited to 'engines/fullpipe/statics.h')
-rw-r--r--engines/fullpipe/statics.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/fullpipe/statics.h b/engines/fullpipe/statics.h
index e21f06666d..9e800c2b67 100644
--- a/engines/fullpipe/statics.h
+++ b/engines/fullpipe/statics.h
@@ -134,6 +134,9 @@ class Movement : public GameObject {
public:
Movement();
+ Movement(Movement *src, StaticANIObject *ani);
+ Movement(Movement *src, int *flag1, int flag2, StaticANIObject *ani);
+
virtual bool load(MfcArchive &file);
bool load(MfcArchive &file, StaticANIObject *ani);
@@ -191,6 +194,7 @@ class StaticANIObject : public GameObject {
void setOXY(int x, int y);
Statics *getStaticsById(int id);
Movement *getMovementById(int id);
+ int getMovementIdById(int itemId);
Movement *getMovementByName(char *name);
Common::Point *getCurrDimensions(Common::Point &p);