mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-05-08 13:34:58 +00:00
17 lines
493 B
C++
17 lines
493 B
C++
#pragma once
|
|
|
|
#include "IObjLoader.h"
|
|
#include "SearchPath/ISearchPath.h"
|
|
|
|
namespace IW3
|
|
{
|
|
class ObjLoader final : public IObjLoader
|
|
{
|
|
public:
|
|
void LoadReferencedContainersForZone(ISearchPath& searchPath, Zone& zone) const override;
|
|
void UnloadContainersOfZone(Zone& zone) const override;
|
|
|
|
void ConfigureCreatorCollection(AssetCreatorCollection& collection, Zone& zone, ISearchPath& searchPath, IGdtQueryable& gdt) const override;
|
|
};
|
|
} // namespace IW3
|