1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-29 03:19:44 +00:00
OpenMW/components/lua/l10n.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
249 B
C++
Raw Normal View History

2022-10-02 20:38:37 +00:00
#ifndef COMPONENTS_LUA_L10N_H
#define COMPONENTS_LUA_L10N_H
2022-04-10 07:57:02 +00:00
2022-10-02 20:38:37 +00:00
#include <sol/sol.hpp>
2022-04-10 07:57:02 +00:00
2022-10-02 20:38:37 +00:00
namespace l10n
{
class Manager;
}
2022-04-10 07:57:02 +00:00
namespace LuaUtil
{
sol::function initL10nLoader(lua_State*, l10n::Manager* manager);
2022-04-10 07:57:02 +00:00
}
2022-10-02 20:38:37 +00:00
#endif // COMPONENTS_LUA_L10N_H