mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-08 05:48:19 -05:00
24 lines
593 B
C++
24 lines
593 B
C++
#pragma once
|
|
|
|
#include "Zone/Zone.h"
|
|
#include "SearchPath/ISearchPath.h"
|
|
|
|
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);
|
|
};
|