aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.h
diff options
context:
space:
mode:
authorEugene Sandulenko2013-07-20 16:08:05 +0300
committerEugene Sandulenko2013-09-06 14:51:03 +0300
commitc76bec26467efc8cad4554cf44903c9f927d3a8c (patch)
tree4defd867679ef804732123772d18b0d11f3a20d3 /engines/fullpipe/gfx.h
parent3ab56b0cc8b0d6967aad3ac7dc9bfa54928ae199 (diff)
downloadscummvm-rg350-c76bec26467efc8cad4554cf44903c9f927d3a8c.tar.gz
scummvm-rg350-c76bec26467efc8cad4554cf44903c9f927d3a8c.tar.bz2
scummvm-rg350-c76bec26467efc8cad4554cf44903c9f927d3a8c.zip
FULLPIPE: Further work on sceneSwitcher()
Diffstat (limited to 'engines/fullpipe/gfx.h')
-rw-r--r--engines/fullpipe/gfx.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/fullpipe/gfx.h b/engines/fullpipe/gfx.h
index a4f9d8fe2c..c420ffe9a2 100644
--- a/engines/fullpipe/gfx.h
+++ b/engines/fullpipe/gfx.h
@@ -82,6 +82,8 @@ class Picture : public MemoryObject {
byte getAlpha() { return (byte)_alpha; }
void setAlpha(byte alpha) { _alpha = alpha; }
+
+ Common::Point *getDimensions(Common::Point *p);
};
class BigPicture : public Picture {
@@ -118,6 +120,7 @@ class PictureObject : public GameObject {
public:
PictureObject();
bool load(MfcArchive &file, bool bigPicture);
+ Common::Point *getDimensions(Common::Point *p);
};
class Background : public CObject {