1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-22 06:23:53 +00:00
openmw/components/lua_ui/widgetlist.hpp
2021-11-18 15:19:54 +00:00

14 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