aboutsummaryrefslogtreecommitdiff
path: root/engines/tsage/core.h
diff options
context:
space:
mode:
authorPaul Gilbert2011-04-26 09:25:25 +1000
committerPaul Gilbert2011-04-26 09:25:25 +1000
commit8fddf47e8ca5991b105d748304b64bf32c81c6de (patch)
tree52f9327d92d7043f91ee9b006ebcf64d88925293 /engines/tsage/core.h
parent09bf964807d35328a073fad3942a3e89f84c1ea6 (diff)
downloadscummvm-rg350-8fddf47e8ca5991b105d748304b64bf32c81c6de.tar.gz
scummvm-rg350-8fddf47e8ca5991b105d748304b64bf32c81c6de.tar.bz2
scummvm-rg350-8fddf47e8ca5991b105d748304b64bf32c81c6de.zip
TSAGE: Implemented scene priority changes introduced in Ringworld CD & Floppy Demo #2
Diffstat (limited to 'engines/tsage/core.h')
-rw-r--r--engines/tsage/core.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/tsage/core.h b/engines/tsage/core.h
index 85f4b420c1..4105c27ba4 100644
--- a/engines/tsage/core.h
+++ b/engines/tsage/core.h
@@ -635,6 +635,8 @@ public:
};
class Region {
+private:
+ void load(const byte *regionData);
public:
int _regionSize;
int _regionId;
@@ -643,6 +645,7 @@ public:
public:
Region() { _regionSize = 0; _regionId = 0; }
Region(int resNum, int rlbNum, ResourceType ctlType = RES_CONTROL);
+ Region(int regionId, const byte *regionData);
bool contains(const Common::Point &pt);
bool empty() const;