openmw/components/lua/l10n.hpp
2025-07-20 21:19:16 +02:00

17 lines
249 B
C++

#ifndef COMPONENTS_LUA_L10N_H
#define COMPONENTS_LUA_L10N_H
#include <sol/sol.hpp>
namespace L10n
{
class Manager;
}
namespace LuaUtil
{
sol::function initL10nLoader(lua_State*, L10n::Manager* manager);
}
#endif // COMPONENTS_LUA_L10N_H