1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 03:21:41 +00:00
OpenMW/components/lua_ui/util.hpp

18 lines
335 B
C++
Raw Normal View History

2021-11-18 15:19:54 +00:00
#ifndef OPENMW_LUAUI_WIDGETLIST
#define OPENMW_LUAUI_WIDGETLIST
#include <string>
2022-09-22 18:26:05 +00:00
#include <unordered_map>
2021-11-18 15:19:54 +00:00
namespace LuaUi
{
void registerAllWidgets();
const std::unordered_map<std::string, std::string>& widgetTypeToName();
2022-01-18 08:12:56 +00:00
2024-01-07 22:29:20 +00:00
void clearGameInterface();
void clearMenuInterface();
2021-11-18 15:19:54 +00:00
}
#endif // OPENMW_LUAUI_WIDGETLIST