Add load argument to unlinker to load zones before trying to unlink specified zones

this allows to make sure certain ipaks are loaded before dumping
This commit is contained in:
Jan
2021-03-27 16:45:30 +01:00
parent 7d4029b21f
commit 4f995751ce
10 changed files with 158 additions and 81 deletions

View File

@ -6,5 +6,5 @@
class ZoneLoading
{
public:
static Zone* LoadZone(const std::string& path);
static std::unique_ptr<Zone> LoadZone(const std::string& path);
};