2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-12-18 16:37:48 +00:00

ObjLoading: Be able to load and index IWD files

This commit is contained in:
Jan
2020-01-01 18:46:33 +01:00
parent a4d55ffae7
commit 0abdb64832
27 changed files with 667 additions and 252 deletions

View File

@@ -6,8 +6,18 @@
class ObjLoading
{
public:
static class Configuration_t
{
public:
bool Verbose = false;
} Configuration;
static void LoadReferencedContainersForZone(ISearchPath* searchPath, Zone* zone);
static void UnloadContainersOfZone(Zone* zone);
static void LoadIWDsInSearchPath(ISearchPath* searchPath);
static void UnloadIWDsInSearchPath(ISearchPath* searchPath);
static ISearchPath* GetIWDSearchPaths();
static void LoadObjDataForZone(ISearchPath* searchPath, Zone* zone);
};
};