mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +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);
|
|
}
|