aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorJean-Patrick Guerrero <kilbith@users.noreply.github.com>2021-03-21 23:23:30 +0100
committerGitHub <noreply@github.com>2021-03-21 23:23:30 +0100
commitc9eba8440d3dc293a8aa6ffafc045737732da1e1 (patch)
treee962e55e70b2e8642e26e29b95f67ebe29e3ab86 /util
parentFix segfault for model[] without animation speed
Diffstat (limited to 'util')
0 files changed, 0 insertions, 0 deletions
#include "modalMenu.h" #include "utility.h" #include <string> class GUIMessageMenu : public GUIModalMenu { public: GUIMessageMenu(gui::IGUIEnvironment* env, gui::IGUIElement* parent, s32 id, IMenuManager *menumgr, std::wstring message_text); ~GUIMessageMenu(); void removeChildren(); /* Remove and re-add (or reposition) stuff */ void regenerateGui(v2u32 screensize); void drawMenu(); bool OnEvent(const SEvent& event); /* true = ok'd */ bool getStatus() { return m_status; } private: std::wstring m_message_text; bool m_status; }; #endif