summaryrefslogtreecommitdiff
path: root/src/gui/gui.h
diff options
context:
space:
mode:
authorSimon Edwardsson <simon@crossnet.se>2004-10-05 20:17:08 +0000
committerSimon Edwardsson <simon@crossnet.se>2004-10-05 20:17:08 +0000
commit9bec20a730bbab9b2cdec4124232ddb529361d3c (patch)
treee97867d526d7a6a2bf67f79ef6d0f8b68607d263 /src/gui/gui.h
parente25e131daa9d884c418ebad8faff2c030e4b35e6 (diff)
downloadmana-client-9bec20a730bbab9b2cdec4124232ddb529361d3c.tar.gz
mana-client-9bec20a730bbab9b2cdec4124232ddb529361d3c.tar.bz2
mana-client-9bec20a730bbab9b2cdec4124232ddb529361d3c.tar.xz
mana-client-9bec20a730bbab9b2cdec4124232ddb529361d3c.zip
You can now increase your stats, when incresing in level.
Diffstat (limited to 'src/gui/gui.h')
-rw-r--r--src/gui/gui.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gui/gui.h b/src/gui/gui.h
index e14a0140..dfa89bd7 100644
--- a/src/gui/gui.h
+++ b/src/gui/gui.h
@@ -24,7 +24,7 @@
#ifdef WIN32
#pragma warning (disable:4312)
#endif
-
+#include "login.h"
#ifndef _TMW_GUI
#define _TMW_GUI
@@ -83,6 +83,9 @@ typedef struct {
LexSkinnedRect bg;
} LexBar;
+typedef struct {
+ LexSkinnedRect bg;
+} LexPlus;
typedef struct {
LexButton button;
@@ -93,6 +96,7 @@ typedef struct {
LexListbox listbox;
LexDialog dialog;
LexBar bar;
+ LexPlus plus;
} LexSkin;
extern LexSkin gui_skin;
@@ -122,6 +126,7 @@ int tmw_ldialog_proc(int msg, DIALOG *d, int c);
int tmw_textbox_proc(int msg, DIALOG *d, int c);
int tmw_bitmap_proc(int msg, DIALOG *d, int c);
int tmw_bar_proc(int msg, DIALOG *d, int c);
+int tmw_plus_proc(int msg, DIALOG *d, int c);
void ok(const char *title, const char *message);
unsigned int yes_no(const char *title, const char *message);