diff options
Diffstat (limited to 'engines/titanic/simple_file.h')
-rw-r--r-- | engines/titanic/simple_file.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/titanic/simple_file.h b/engines/titanic/simple_file.h index b779fd0a35..815896fc7e 100644 --- a/engines/titanic/simple_file.h +++ b/engines/titanic/simple_file.h @@ -224,6 +224,11 @@ public: * Open up the specified file */ void open(const CString &name); + + /** + * Return a reference to the read stream + */ + Common::SeekableReadStream *readStream() const { return _inStream; } }; } // End of namespace Titanic |