2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-05-01 16:09:36 +00:00
Files
OpenAssetTools/src/ObjLoading/SearchPath/IWD.h
T
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);
}