aboutsummaryrefslogtreecommitdiff
path: root/engines/tsage/core.h
diff options
context:
space:
mode:
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;