aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/resource.h
diff options
context:
space:
mode:
authorMatthew Hoops2011-06-28 13:54:14 -0400
committerMatthew Hoops2011-06-28 13:54:14 -0400
commitddd83da48bb0aea037b9f199490b359e2d7a97e7 (patch)
tree8c5af29f3bb3af0de44904895d37781c15449066 /engines/mohawk/resource.h
parentcc818b444c454d2f8978655d5c29f379cbe21376 (diff)
downloadscummvm-rg350-ddd83da48bb0aea037b9f199490b359e2d7a97e7.tar.gz
scummvm-rg350-ddd83da48bb0aea037b9f199490b359e2d7a97e7.tar.bz2
scummvm-rg350-ddd83da48bb0aea037b9f199490b359e2d7a97e7.zip
MOHAWK: Add archive functions to get type/id lists
This will be needed for CarmenTQ
Diffstat (limited to 'engines/mohawk/resource.h')
-rw-r--r--engines/mohawk/resource.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/mohawk/resource.h b/engines/mohawk/resource.h
index d4e91e0ec4..f2ead7af65 100644
--- a/engines/mohawk/resource.h
+++ b/engines/mohawk/resource.h
@@ -148,6 +148,9 @@ public:
uint16 findResourceID(uint32 tag, const Common::String &resName) const;
Common::String getName(uint32 tag, uint16 id) const;
+ Common::Array<uint32> getResourceTypeList() const;
+ Common::Array<uint16> getResourceIDList(uint32 type) const;
+
protected:
Common::SeekableReadStream *_stream;