1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-29 00:32:49 +00:00
OpenMW/components/lua/yamlloader.hpp

19 lines
353 B
C++
Raw Normal View History

2024-03-05 10:07:35 +04:00
#ifndef COMPONENTS_LUA_YAMLLOADER_H
#define COMPONENTS_LUA_YAMLLOADER_H
#include <sol/sol.hpp>
namespace LuaUtil
{
2024-03-16 17:22:25 +04:00
namespace YamlLoader
2024-03-05 10:07:35 +04:00
{
2024-03-16 17:22:25 +04:00
sol::object load(const std::string& input, const sol::state_view& lua);
2024-03-05 10:07:35 +04:00
2024-03-16 17:22:25 +04:00
sol::object load(std::istream& input, const sol::state_view& lua);
}
2024-03-05 10:07:35 +04:00
}
#endif // COMPONENTS_LUA_YAMLLOADER_H