Unlinker: Add skeleton for Dumping and listing of assets

This commit is contained in:
Jan
2019-11-15 18:17:08 +01:00
parent d176e137a5
commit 2fe3954da8
11 changed files with 214 additions and 4 deletions

View File

@ -40,4 +40,14 @@ Zone* ZoneLoading::LoadZone(const std::string& path)
file.Close();
return loadedZone;
}
bool ZoneLoading::DumpZone(Zone* zone, const std::string& basePath)
{
return true;
}
bool ZoneLoading::WriteZoneDefinition(Zone* zone, FileAPI::File* file, bool minimalistic)
{
return true;
}