1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-01 01:15:33 +00:00
openmw/components/lua/yamlloader.hpp
2024-03-16 22:06:28 +04:00

18 lines
353 B
C++

#ifndef COMPONENTS_LUA_YAMLLOADER_H
#define COMPONENTS_LUA_YAMLLOADER_H
#include <sol/sol.hpp>
namespace LuaUtil
{
namespace YamlLoader
{
sol::object load(const std::string& input, const sol::state_view& lua);
sol::object load(std::istream& input, const sol::state_view& lua);
}
}
#endif // COMPONENTS_LUA_YAMLLOADER_H