aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/objects.h
diff options
context:
space:
mode:
authorMartin Kiewitz2015-06-11 19:52:41 +0200
committerMartin Kiewitz2015-06-11 19:52:41 +0200
commit515d5422a7574971140d7b93e2db5275b5afec2f (patch)
tree56dd6588c3babef5cd5b037a004cc7517cc94f7d /engines/sherlock/objects.h
parentd6ca620a7cdc6e9ba18b2f45ded3080ec186aab7 (diff)
downloadscummvm-rg350-515d5422a7574971140d7b93e2db5275b5afec2f.tar.gz
scummvm-rg350-515d5422a7574971140d7b93e2db5275b5afec2f.tar.bz2
scummvm-rg350-515d5422a7574971140d7b93e2db5275b5afec2f.zip
SHERLOCK: some work on 3DO room data
Diffstat (limited to 'engines/sherlock/objects.h')
-rw-r--r--engines/sherlock/objects.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/sherlock/objects.h b/engines/sherlock/objects.h
index addadccd9d..6561a370fa 100644
--- a/engines/sherlock/objects.h
+++ b/engines/sherlock/objects.h
@@ -159,6 +159,7 @@ struct UseType {
* Load the data for the UseType
*/
void load(Common::SeekableReadStream &s, bool isRoseTattoo);
+ void load3DO(Common::SeekableReadStream &s);
};
class BaseObject {
@@ -344,6 +345,7 @@ public:
* Load the data for the object
*/
void load(Common::SeekableReadStream &s, bool isRoseTattoo);
+ void load3DO(Common::SeekableReadStream &s);
/**
* Toggle the type of an object between hidden and active
@@ -436,6 +438,7 @@ struct CAnim {
* Load the data for the animation
*/
void load(Common::SeekableReadStream &s, bool isRoseTattoo);
+ void load3DO(Common::SeekableReadStream &s);
};
class CAnimStream {