Finished OffsetVfsFile

This commit is contained in:
Zach Hilman
2018-06-19 21:52:41 -04:00
parent a2fb1a04d5
commit 1cc6419524
3 changed files with 93 additions and 4 deletions

View File

@@ -9,7 +9,7 @@
namespace FileSys {
struct RealVfsFile : public VfsFile {
explicit RealVfsFile(const std::string& name, const char openmode[]);
RealVfsFile(const std::string& name, const char openmode[]);
bool IsReady() override;
bool IsGood() override;
@@ -31,7 +31,7 @@ private:
};
struct RealVfsDirectory : public VfsDirectory {
explicit RealVfsDirectory(const std::string& path, const char openmode[]);
RealVfsDirectory(const std::string& path, const char openmode[]);
bool IsReady() override;
bool IsGood() override;