mirror of https://github.com/OpenMW/openmw.git
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.
17 lines
304 B
C++
17 lines
304 B
C++
3 years ago
|
#ifndef OPENMW_LUAUI_WIDGETLIST
|
||
|
#define OPENMW_LUAUI_WIDGETLIST
|
||
|
|
||
|
#include <unordered_map>
|
||
|
#include <string>
|
||
|
|
||
|
namespace LuaUi
|
||
|
{
|
||
|
void registerAllWidgets();
|
||
|
|
||
|
const std::unordered_map<std::string, std::string>& widgetTypeToName();
|
||
3 years ago
|
|
||
|
void clearUserInterface();
|
||
3 years ago
|
}
|
||
|
|
||
|
#endif // OPENMW_LUAUI_WIDGETLIST
|