2545
|
1 #pragma once
|
|
2 #include "GUI/GUIWindow.h"
|
|
3
|
|
4
|
|
5 struct GUIWindow_Rest : public GUIWindow
|
|
6 {
|
2549
|
7 GUIWindow_Rest();
|
2545
|
8 virtual ~GUIWindow_Rest() {}
|
|
9
|
|
10 virtual void Update();
|
|
11 };
|
|
12
|
|
13
|
|
14 struct GUIWindow_RestWindow : public GUIWindow
|
|
15 {
|
|
16 GUIWindow_RestWindow(unsigned int x, unsigned int y, unsigned int width, unsigned int height, int button, const char *hint) :
|
|
17 GUIWindow(x, y, width, height, button, hint)
|
|
18 {}
|
|
19 virtual ~GUIWindow_RestWindow() {}
|
|
20
|
|
21 virtual void Update();
|
|
22 virtual void Release();
|
|
23 }; |