aboutsummaryrefslogtreecommitdiff
path: root/engines/prince/object.h
diff options
context:
space:
mode:
authorlukaslw2014-06-01 02:58:27 +0200
committerlukaslw2014-06-22 20:08:31 +0200
commit6f19bd82f48ffb7c9f772c8b3112449df36ce6eb (patch)
treeda4a238633cc5f29598a1e9c10800a4cb8976099 /engines/prince/object.h
parent9933505bf5ed72894bfa696ae5b2d4085dc1c242 (diff)
downloadscummvm-rg350-6f19bd82f48ffb7c9f772c8b3112449df36ce6eb.tar.gz
scummvm-rg350-6f19bd82f48ffb7c9f772c8b3112449df36ce6eb.tar.bz2
scummvm-rg350-6f19bd82f48ffb7c9f772c8b3112449df36ce6eb.zip
PRINCE: Object class update, showObjects() beginning
Diffstat (limited to 'engines/prince/object.h')
-rw-r--r--engines/prince/object.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/engines/prince/object.h b/engines/prince/object.h
index 66f2a725f8..5bc7c580da 100644
--- a/engines/prince/object.h
+++ b/engines/prince/object.h
@@ -33,9 +33,17 @@ public:
Object();
~Object();
+ int32 _x;
+ int32 _y;
+ int32 _z;
+ int32 _mask; // or flags
+ int32 _zoomInSource;
+ int32 _zoomInLen;
+ int32 _zoomInAddr;
+ int32 _zoomInTime;
+
bool loadFromStream(Common::SeekableReadStream &stream);
const Graphics::Surface *getSurface() const { return _surface; }
- uint16 _x, _y, _z, _overlay;
private:
void loadSurface(Common::SeekableReadStream &stream);
Graphics::Surface *_surface;