aboutsummaryrefslogtreecommitdiff
path: root/engines/made/database.h
diff options
context:
space:
mode:
authorBenjamin Haisch2009-01-22 13:04:29 +0000
committerBenjamin Haisch2009-01-22 13:04:29 +0000
commit5b8105afb3a345cfd66efa795726329f509572c3 (patch)
tree4ff90316c9dee6be8bda8a0c3f8413ab5d8178a5 /engines/made/database.h
parentd5d7175691ea3cde7aa941886e3197763c1398c6 (diff)
downloadscummvm-rg350-5b8105afb3a345cfd66efa795726329f509572c3.tar.gz
scummvm-rg350-5b8105afb3a345cfd66efa795726329f509572c3.tar.bz2
scummvm-rg350-5b8105afb3a345cfd66efa795726329f509572c3.zip
- Added support for The Manhole EGA version
- Support for 'chunked' picture resources and EGA pictures - Improved the mouth sync in RtZ (still not perfect, though) - Removed obsolete TODOs - Fixed sfPlayMovie to return if the movie playback was aborted or not; this is used by RtZ to determine if it should display the credits screen after the intro movie svn-id: r35997
Diffstat (limited to 'engines/made/database.h')
-rw-r--r--engines/made/database.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/made/database.h b/engines/made/database.h
index bceed50109..cf5dd31225 100644
--- a/engines/made/database.h
+++ b/engines/made/database.h
@@ -39,6 +39,7 @@ namespace Made {
class Object {
public:
+
Object();
virtual ~Object();
@@ -86,7 +87,11 @@ public:
bool isConstant() {
return false;
}
+};
+class ObjectV1 : public ObjectV2 {
+public:
+ int load(Common::SeekableReadStream &source);
};
class ObjectV3 : public Object {