mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
15 lines
272 B
C++
15 lines
272 B
C++
|
#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();
|
||
|
}
|
||
|
|
||
|
#endif // OPENMW_LUAUI_WIDGETLIST
|