mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-05 16:27:27 +00:00
12 lines
178 B
C++
12 lines
178 B
C++
#pragma once
|
|
|
|
#include "SearchPath/ISearchPath.h"
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace iwd
|
|
{
|
|
std::unique_ptr<ISearchPath> LoadFromFile(const std::string& path);
|
|
}
|