annotate GUI/UI/UIModal.h @ 2572:d87bfbd3bb3b
Step towards unification of Texture and RGBTexture (class Image)
author |
a.parshin |
date |
Sat, 05 Mar 2016 01:51:54 +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 }; |