mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-01 21:36:42 +00:00
14 lines
362 B
C++
14 lines
362 B
C++
#ifndef OPENMW_LUAUI_REGISTERSCRIPTSETTINGS
|
|
#define OPENMW_LUAUI_REGISTERSCRIPTSETTINGS
|
|
|
|
#include <sol/sol.hpp>
|
|
|
|
namespace LuaUi
|
|
{
|
|
// implemented in scriptsettings.cpp
|
|
void registerSettingsPage(const sol::table& options);
|
|
void clearSettings();
|
|
void removeSettingsPage(const sol::table& options);
|
|
}
|
|
|
|
#endif // !OPENMW_LUAUI_REGISTERSCRIPTSETTINGS
|