Mercurial > mm7
diff GUI/UI/UIModal.h @ 2547:fed97f15d1e1
* SaveLoad
* QuickReference
* Modal
* Character
author | a.parshin |
---|---|
date | Tue, 12 May 2015 01:45:31 +0200 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/GUI/UI/UIModal.h Tue May 12 01:45:31 2015 +0200 @@ -0,0 +1,14 @@ +#pragma once +#include "GUI/GUIWindow.h" + +struct GUIWindow_Modal : public GUIWindow +{ + GUIWindow_Modal(const char *message, enum UIMessageType on_release_event); + virtual ~GUIWindow_Modal() {} + + virtual void Update(); + virtual void Release(); + + protected: + enum CURRENT_SCREEN prev_screen_type; +}; \ No newline at end of file