annotate GUI/UI/UIModal.h @ 2547:fed97f15d1e1
* SaveLoad
* QuickReference
* Modal
* Character
author |
a.parshin |
date |
Tue, 12 May 2015 01:45:31 +0200 |
parents |
|
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 }; |