aboutsummaryrefslogtreecommitdiff
path: root/engines/prince/object.h
diff options
context:
space:
mode:
authorlukaslw2014-05-17 23:25:31 +0200
committerlukaslw2014-06-22 20:08:08 +0200
commit3d590627eda86a56080bbb55f5b51c19b55cd3a1 (patch)
treefdce82a04131f38d3de79dff14f0e07a2f1b9567 /engines/prince/object.h
parentd5f2b97c3e291832317e950773997e3f206b8975 (diff)
downloadscummvm-rg350-3d590627eda86a56080bbb55f5b51c19b55cd3a1.tar.gz
scummvm-rg350-3d590627eda86a56080bbb55f5b51c19b55cd3a1.tar.bz2
scummvm-rg350-3d590627eda86a56080bbb55f5b51c19b55cd3a1.zip
PRINCE: Room struct implementation and objects drawing fix
Diffstat (limited to 'engines/prince/object.h')
-rw-r--r--engines/prince/object.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/prince/object.h b/engines/prince/object.h
index 7a3d19e906..66f2a725f8 100644
--- a/engines/prince/object.h
+++ b/engines/prince/object.h
@@ -35,12 +35,10 @@ public:
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;
- uint16 _x, _y, _z;
};
}