1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-22 08:23:52 +00:00
openmw/components/lua_ui/textedit.hpp

19 lines
347 B
C++
Raw Normal View History

2021-11-18 15:19:54 +00:00
#ifndef OPENMW_LUAUI_TEXTEDIT
#define OPENMW_LUAUI_TEXTEDIT
#include <MyGUI_EditBox.h>
#include "widget.hpp"
namespace LuaUi
{
class LuaTextEdit : public MyGUI::EditBox, public WidgetExtension
{
MYGUI_RTTI_DERIVED(LuaTextEdit)
virtual void setProperties(sol::object) override;
2021-11-18 15:19:54 +00:00
};
}
#endif // OPENMW_LUAUI_TEXTEDIT