mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
19 lines
353 B
C++
19 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
|