mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-12-27 20:41:49 +00:00
Unlinker/ObjLoading: Add skeleton for dynamically loading search paths based on current zone
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include "SearchPath/ISearchPath.h"
|
||||
#include "Zone/Zone.h"
|
||||
|
||||
class IObjLoader
|
||||
@@ -8,6 +9,6 @@ public:
|
||||
virtual ~IObjLoader() = default;
|
||||
|
||||
virtual bool SupportsZone(Zone* zone) = 0;
|
||||
virtual void LoadReferencedContainersForZone(Zone* zone) = 0;
|
||||
virtual void LoadObjDataForZone(Zone* zone) = 0;
|
||||
virtual void LoadReferencedContainersForZone(ISearchPath* searchPath, Zone* zone) = 0;
|
||||
virtual void LoadObjDataForZone(ISearchPath* searchPath, Zone* zone) = 0;
|
||||
};
|
||||
Reference in New Issue
Block a user