2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-05 16:27:27 +00:00
Files
OpenAssetTools/src/ObjLoading/SearchPath/IWD.h
2025-01-01 18:14:39 +01:00

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);
}