diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-01-07 00:23:22 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-01-07 00:23:22 +0000 |
commit | 3fe5d486bf33d4658ab75b49fe878a9a0394d835 (patch) | |
tree | 883a1912f751353c0f0d349b0077362b6e3f23f6 /src/gui/status.h | |
parent | d818bc97c2d1b570ff11197f80d0b0ad471f0af7 (diff) | |
download | mana-3fe5d486bf33d4658ab75b49fe878a9a0394d835.tar.gz mana-3fe5d486bf33d4658ab75b49fe878a9a0394d835.tar.bz2 mana-3fe5d486bf33d4658ab75b49fe878a9a0394d835.tar.xz mana-3fe5d486bf33d4658ab75b49fe878a9a0394d835.zip |
Synchronized player attributes with wiki Attributes page and removed Job XP.
Diffstat (limited to 'src/gui/status.h')
-rw-r--r-- | src/gui/status.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/status.h b/src/gui/status.h index fe2140e3..43dfe8c2 100644 --- a/src/gui/status.h +++ b/src/gui/status.h @@ -71,9 +71,9 @@ class StatusWindow : public Window, public gcn::ActionListener { */ gcn::Label *mLvlLabel, *mMoneyLabel, *mHpLabel, *mHpValueLabel; gcn::Label *mMpLabel, *mMpValueLabel; - gcn::Label *mXpLabel, *mXpValueLabel, *mJobXpLabel, *mJobValueLabel; + gcn::Label *mXpLabel, *mXpValueLabel; ProgressBar *mHpBar, *mMpBar; - ProgressBar *mXpBar, *mJobXpBar; + ProgressBar *mXpBar; /** * Derived Statistics captions @@ -91,15 +91,15 @@ class StatusWindow : public Window, public gcn::ActionListener { /** * Stats captions. */ - gcn::Label *mStatsLabel[6]; - gcn::Label *mPointsLabel[6]; - gcn::Label *mStatsDisplayLabel[6]; + gcn::Label *mStatsLabel[7]; + gcn::Label *mPointsLabel[7]; + gcn::Label *mStatsDisplayLabel[7]; gcn::Label *mRemainingStatsPointsLabel; /** * Stats buttons. */ - gcn::Button *mStatsButton[6]; + gcn::Button *mStatsButton[7]; }; extern StatusWindow *statusWindow; |