annotate GUI/UI/Spellbook.h @ 2565:117c219bf913
Party, items and stuff are abstracted from savegame file representation
author |
a.parshin |
date |
Wed, 20 May 2015 15:12:33 +0200 |
parents |
3121fb54a110 |
children |
dd36326a9994 |
rev |
line source |
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);
|
|
14 }; |