mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
19 lines
654 B
C++
19 lines
654 B
C++
#pragma once
|
|
|
|
#include "IObjCompiler.h"
|
|
|
|
namespace IW3
|
|
{
|
|
class ObjCompiler final : public IObjCompiler
|
|
{
|
|
public:
|
|
void ConfigureCreatorCollection(AssetCreatorCollection& collection,
|
|
Zone& zone,
|
|
const ZoneDefinition& zoneDefinition,
|
|
ISearchPath& searchPath,
|
|
IGdtQueryable& gdt,
|
|
const std::filesystem::path& outDir,
|
|
const std::filesystem::path& cacheDir) const override;
|
|
};
|
|
} // namespace IW3
|