Mercurial > mm7
annotate GUI/UI/UIModal.h @ 2566:30eb6dcac768
big spell fx overhaul
author | a.parshin |
---|---|
date | Wed, 20 May 2015 21:05:07 +0200 |
parents | fed97f15d1e1 |
children |
rev | line source |
---|---|
2547 | 1 #pragma once |
2 #include "GUI/GUIWindow.h" | |
3 | |
4 struct GUIWindow_Modal : public GUIWindow | |
5 { | |
6 GUIWindow_Modal(const char *message, enum UIMessageType on_release_event); | |
7 virtual ~GUIWindow_Modal() {} | |
8 | |
9 virtual void Update(); | |
10 virtual void Release(); | |
11 | |
12 protected: | |
13 enum CURRENT_SCREEN prev_screen_type; | |
14 }; |