2549
|
1 #pragma once
|
|
2 #include "GUI/GUIWindow.h"
|
|
3
|
|
4 struct GUIWindow_Spellbook : public GUIWindow
|
|
5 {
|
|
6 GUIWindow_Spellbook();
|
|
7 virtual ~GUIWindow_Spellbook() {}
|
|
8
|
|
9 virtual void Update();
|
|
10 virtual void Release();
|
|
11
|
|
12 void OpenSpellbook();
|
|
13 void OpenSpellbookPage(int page);
|
2574
|
14 };
|
|
15
|
|
16
|
|
17 extern class Image *ui_spellbook_btn_quckspell;
|
|
18 extern class Image *ui_spellbook_btn_quckspell_click;
|
|
19 extern class Image *ui_spellbook_btn_close;
|
|
20 extern class Image *ui_spellbook_btn_close_click; |