aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.h
diff options
context:
space:
mode:
authorEugene Sandulenko2013-07-26 00:14:47 +0300
committerEugene Sandulenko2013-09-06 14:51:06 +0300
commitb18f08d93bc1e7f681a830413b0e57fad61faff3 (patch)
tree87515374c5b1ea377d0e79096bf656fc4ff5d8f3 /engines/fullpipe/gfx.h
parent7f332e1f208344f88d1cfd1899743eb7dd5403de (diff)
downloadscummvm-rg350-b18f08d93bc1e7f681a830413b0e57fad61faff3.tar.gz
scummvm-rg350-b18f08d93bc1e7f681a830413b0e57fad61faff3.tar.bz2
scummvm-rg350-b18f08d93bc1e7f681a830413b0e57fad61faff3.zip
FULLPIPE: Started Statics drawing
Diffstat (limited to 'engines/fullpipe/gfx.h')
-rw-r--r--engines/fullpipe/gfx.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/engines/fullpipe/gfx.h b/engines/fullpipe/gfx.h
index 5848e57536..8a14177dc0 100644
--- a/engines/fullpipe/gfx.h
+++ b/engines/fullpipe/gfx.h
@@ -27,6 +27,9 @@ class Common::ReadStream;
namespace Fullpipe {
+class DynamicPhase;
+class Movement;
+
class ShadowsItemArray : public CObArray {
// empty
};
@@ -158,6 +161,15 @@ class Shadows : public CObject {
public:
Shadows();
virtual bool load(MfcArchive &file);
+ void init();
+
+ void initMovement(Movement *mov);
+};
+
+struct ShadowsItem {
+ int width;
+ int height;
+ DynamicPhase *dynPhase;
};
} // End of namespace Fullpipe