mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-01-22 16:31:48 +00:00
13 lines
336 B
C++
13 lines
336 B
C++
#pragma once
|
|
|
|
#include "Asset/AssetCreationContext.h"
|
|
#include "Techset/CommonTechset.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace techset
|
|
{
|
|
std::unique_ptr<CommonTechset>
|
|
LoadCommonTechset(const std::string& assetName, const CommonTechniqueTypeNames& techniqueTypeNames, ISearchPath& searchPath, bool& failure);
|
|
} // namespace techset
|