You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw/components/lua_ui/util.hpp

18 lines
335 B
C++

#ifndef OPENMW_LUAUI_WIDGETLIST
#define OPENMW_LUAUI_WIDGETLIST
#include <string>
#include <unordered_map>
namespace LuaUi
{
void registerAllWidgets();
const std::unordered_map<std::string, std::string>& widgetTypeToName();
void clearGameInterface();
void clearMenuInterface();
}
#endif // OPENMW_LUAUI_WIDGETLIST