aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-06-24 08:28:07 -0400
committerEugene Sandulenko2013-09-06 14:48:15 +0300
commit00971bf2092c5e9c33d5475bb91075d2bcc32557 (patch)
treeb40c44dd3b9e97d31831b8262949fa7e56199092 /engines/fullpipe/gfx.cpp
parent68c5cfdf2c35d82b506dd4fc0c4335608a22a404 (diff)
downloadscummvm-rg350-00971bf2092c5e9c33d5475bb91075d2bcc32557.tar.gz
scummvm-rg350-00971bf2092c5e9c33d5475bb91075d2bcc32557.tar.bz2
scummvm-rg350-00971bf2092c5e9c33d5475bb91075d2bcc32557.zip
FULLPIPE: Shadows loading
Diffstat (limited to 'engines/fullpipe/gfx.cpp')
-rw-r--r--engines/fullpipe/gfx.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp
index 0305a004b8..79a1e1da70 100644
--- a/engines/fullpipe/gfx.cpp
+++ b/engines/fullpipe/gfx.cpp
@@ -204,4 +204,19 @@ bool BigPicture::load(MfcArchive &file) {
return true;
}
+Shadows::Shadows() {
+ _staticAniObjectId = 0;
+ _movementId = 0;
+ _sceneId = 0;
+}
+
+bool Shadows::load(MfcArchive &file) {
+ _sceneId = file.readUint32LE();
+ _staticAniObjectId = file.readUint32LE();
+ _movementId = file.readUint32LE();
+
+ return true;
+}
+
+
} // End of namespace Fullpipe