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

@ -1,9 +1,12 @@
#pragma once
#include "Zone/Zone.h"
#include <string>
#include "Utils/FileAPI.h"
class ZoneLoading
{
public:
static Zone* LoadZone(const std::string& path);
static bool DumpZone(Zone* zone, const std::string& basePath);
static bool WriteZoneDefinition(Zone* zone, FileAPI::File* file, bool minimalistic);
};