annotate GUI/UI/UIModal.h @ 2575:a76d408c5132
tip
DrawTranslucent -> DrawTextureGrayShade
Removed old texture drawing stuff
author |
a.parshin |
date |
Wed, 09 Mar 2016 01:39:52 +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 }; |