aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/package/packagemanager.h
diff options
context:
space:
mode:
authorPaul Gilbert2010-07-31 13:02:58 +0000
committerEugene Sandulenko2010-10-12 22:15:42 +0000
commitea29e41b86dd6efad5b044220505ded798b2503e (patch)
tree461451b1ee2eb4c006bc95f130ff25b446a360c0 /engines/sword25/package/packagemanager.h
parentbed623b11ef007bb46b26f1f995b6073914383c5 (diff)
downloadscummvm-rg350-ea29e41b86dd6efad5b044220505ded798b2503e.tar.gz
scummvm-rg350-ea29e41b86dd6efad5b044220505ded798b2503e.tar.bz2
scummvm-rg350-ea29e41b86dd6efad5b044220505ded798b2503e.zip
SWORD25: Reimplemented package manager for ScummVM using Common::Archive
svn-id: r53194
Diffstat (limited to 'engines/sword25/package/packagemanager.h')
-rw-r--r--engines/sword25/package/packagemanager.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sword25/package/packagemanager.h b/engines/sword25/package/packagemanager.h
index cb54f3240b..1d6c71074f 100644
--- a/engines/sword25/package/packagemanager.h
+++ b/engines/sword25/package/packagemanager.h
@@ -118,14 +118,14 @@ public:
* @param FileName The filename of the package to mount
* @param MountPosition The directory name under which the package should be mounted
* @return Returns true if the mount was successful, otherwise false.
- */
+ */
virtual bool LoadPackage(const Common::String &FileName, const Common::String &MountPosition) = 0;
/**
* Mounts the contents of a directory in the specified directory in the virtual directory tree.
* @param The name of the directory to mount
* @param MountPosition The directory name under which the package should be mounted
* @return Returns true if the mount was successful, otherwise false.
- */
+ */
virtual bool LoadDirectoryAsPackage(const Common::String &DirectoryName, const Common::String &MountPosition) = 0;
/**
* Downloads a file from the virtual directory tree
@@ -190,7 +190,7 @@ public:
* Determines whether a file exists
* @param FileName The filename
* @return Returns true if the file exists, otherwise false.
- */
+ */
virtual bool FileExists(const Common::String & FileName) = 0;
private: