mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 16:45:44 +00:00
19 lines
555 B
C++
19 lines
555 B
C++
#pragma once
|
|
|
|
#include "AssetLoading/IAssetLoader.h"
|
|
#include "IObjLoader.h"
|
|
#include "SearchPath/ISearchPath.h"
|
|
#include "Zone/Zone.h"
|
|
|
|
namespace IW4
|
|
{
|
|
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 IW4
|