diff options
author | Alexander Baldeck <alexander@archlinux.org> | 2004-10-03 11:40:33 +0000 |
---|---|---|
committer | Alexander Baldeck <alexander@archlinux.org> | 2004-10-03 11:40:33 +0000 |
commit | 1c0e43d3b05ae25c1d15d11f4087d878dec40eb6 (patch) | |
tree | 4a40d2a5436f833308f0c21edf933bf18eaf6aaf | |
parent | aa48bc3bf9cae0fbf52173e81bc3c640c8c024c4 (diff) | |
download | mana-client-1c0e43d3b05ae25c1d15d11f4087d878dec40eb6.tar.gz mana-client-1c0e43d3b05ae25c1d15d11f4087d878dec40eb6.tar.bz2 mana-client-1c0e43d3b05ae25c1d15d11f4087d878dec40eb6.tar.xz mana-client-1c0e43d3b05ae25c1d15d11f4087d878dec40eb6.zip |
1st permament stats-dialog
-rw-r--r-- | src/gui/stats.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gui/stats.cpp b/src/gui/stats.cpp index d339d79a..a24cedf1 100644 --- a/src/gui/stats.cpp +++ b/src/gui/stats.cpp @@ -22,7 +22,6 @@ */ #include "stats.h" - #include <iostream> extern PLAYER_INFO *char_info; @@ -44,14 +43,3 @@ void update_stats_dialog() { sprintf(stats_hp, "HP %i / %i", char_info->hp, char_info->max_hp); sprintf(stats_sp, "SP %i / %i", char_info->sp, char_info->max_sp); } - -/* -typedef struct { - int id; - char name[24]; - short hp, max_hp, sp, max_sp, lv; - int xp, zeny, job_xp, job_lv; - short statp, skillp; - char STR, AGI, VIT, INT, DEX, LUK; -} PLAYER_INFO; -*/ |