diff options
author | Philipp Sehmisch <tmw@crushnet.org> | 2007-03-22 23:10:27 +0000 |
---|---|---|
committer | Philipp Sehmisch <tmw@crushnet.org> | 2007-03-22 23:10:27 +0000 |
commit | 346bb6d670d630d65f8c35125831c75d031aac7f (patch) | |
tree | c79877ea0d6b46ae748bf4a6d6d3969dc483f0a4 /src/gui/status.h | |
parent | 6f9a2e74958d794fb049253833b98982e915df45 (diff) | |
download | mana-346bb6d670d630d65f8c35125831c75d031aac7f.tar.gz mana-346bb6d670d630d65f8c35125831c75d031aac7f.tar.bz2 mana-346bb6d670d630d65f8c35125831c75d031aac7f.tar.xz mana-346bb6d670d630d65f8c35125831c75d031aac7f.zip |
Redesigned the localplayer class to use getters and setters instead of direct access to the member variables. Implemented communication of attributes between server and client.
Diffstat (limited to 'src/gui/status.h')
-rw-r--r-- | src/gui/status.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/gui/status.h b/src/gui/status.h index 37f8a648..40d25a2a 100644 --- a/src/gui/status.h +++ b/src/gui/status.h @@ -70,14 +70,12 @@ class StatusWindow : public Window, public gcn::ActionListener { * Status Part */ gcn::Label *mLvlLabel, *mMoneyLabel, *mHpLabel, *mHpValueLabel; - gcn::Label *mMpLabel, *mMpValueLabel; - gcn::Label *mXpLabel, *mXpValueLabel; - ProgressBar *mHpBar, *mMpBar; - ProgressBar *mXpBar; + ProgressBar *mHpBar; /** * Derived Statistics captions */ +/* gcn::Label *mStatsAttackLabel, *mStatsDefenseLabel; gcn::Label *mStatsMagicAttackLabel, *mStatsMagicDefenseLabel; gcn::Label *mStatsAccuracyLabel, *mStatsEvadeLabel; @@ -87,7 +85,7 @@ class StatusWindow : public Window, public gcn::ActionListener { gcn::Label *mStatsMagicAttackPoints, *mStatsMagicDefensePoints; gcn::Label *mStatsAccuracyPoints, *mStatsEvadePoints; gcn::Label *mStatsReflexPoints; - +*/ /** * Stats captions. */ |