Unlinker/ObjLoading: Add skeleton for dynamically loading search paths based on current zone

This commit is contained in:
Jan
2019-12-30 23:52:33 +01:00
parent 5f833969f9
commit 153f8f2e89
15 changed files with 727 additions and 178 deletions

View File

@ -1,11 +1,13 @@
#pragma once
#include "Zone/Zone.h"
#include "SearchPath/ISearchPath.h"
class ObjLoading
{
public:
static void LoadReferencedContainersForZone(Zone* zone);
static void LoadObjDataForZone(Zone* zone);
static void LoadReferencedContainersForZone(ISearchPath* searchPath, Zone* zone);
static void UnloadContainersOfZone(Zone* zone);
static void LoadObjDataForZone(ISearchPath* searchPath, Zone* zone);
};