mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-31 18:15:01 +00:00
23 lines
514 B
C++
23 lines
514 B
C++
#ifndef OPENMW_LUAUI_SCRIPTSETTINGS
|
|
#define OPENMW_LUAUI_SCRIPTSETTINGS
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace LuaUi
|
|
{
|
|
class LuaAdapter;
|
|
struct Element;
|
|
struct ScriptSettingsPage
|
|
{
|
|
std::string mName;
|
|
std::string mSearchHints;
|
|
std::shared_ptr<Element> mElement;
|
|
};
|
|
size_t scriptSettingsPageCount();
|
|
ScriptSettingsPage scriptSettingsPageAt(size_t index);
|
|
void attachPageAt(size_t index, LuaAdapter* adapter);
|
|
}
|
|
|
|
#endif // !OPENMW_LUAUI_SCRIPTSETTINGS
|