diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-01-08 16:51:00 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-01-08 16:51:00 +0000 |
commit | 9ab399906e9c6ba2d6e029b1d8be50bd1df70ed4 (patch) | |
tree | 325486399e3859098f20fbe83a47276fdf01a130 /src/main.h | |
parent | ee416a5f3de03a689247a290077e7fdf451e1a23 (diff) | |
download | mana-9ab399906e9c6ba2d6e029b1d8be50bd1df70ed4.tar.gz mana-9ab399906e9c6ba2d6e029b1d8be50bd1df70ed4.tar.bz2 mana-9ab399906e9c6ba2d6e029b1d8be50bd1df70ed4.tar.xz mana-9ab399906e9c6ba2d6e029b1d8be50bd1df70ed4.zip |
Some improvements to character creation and selection dialogs.
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 26 |
1 files changed, 11 insertions, 15 deletions
@@ -34,9 +34,6 @@ #include "configuration.h" #include "gui/login.h" #include "gui/gui.h" -#include "gui/char_server.h" -#include "gui/char_select.h" -#include "gui/inventory.h" #include "graphic/image.h" #include "log.h" #include "game.h" @@ -66,22 +63,21 @@ #define LEN_PASSWORD 25 - typedef struct { - int address; - short port; - char name[20]; - short online_users; + int address; + short port; + char name[20]; + short online_users; } SERVER_INFO; typedef struct { - int id; - char name[24]; - short hp, max_hp, sp, max_sp, lv; - int xp, gp, job_xp, job_lv; - short statp, skill_point, hair_color, hair_style; - char STR, AGI, VIT, INT, DEX, LUK; - short weapon; + int id; + char name[24]; + short hp, max_hp, sp, max_sp, lv; + int xp, gp, job_xp, job_lv; + short statp, skill_point, hair_color, hair_style; + char STR, AGI, VIT, INT, DEX, LUK; + short weapon; } PLAYER_INFO; extern BITMAP *login_wallpaper; |