diff options
author | Freeyorp <Freeyorp101@NOSPAM@hotmail.com> | 2009-05-11 00:45:17 +1200 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-05-10 11:38:37 -0600 |
commit | 7f15330d969e5c973429d03ca767551e7b67c3c3 (patch) | |
tree | 45a1688f5b58ccec447dc501d74447363aab9d42 /src/gui/partywindow.h | |
parent | f3ab737d9d508aaa25b01b462fa9c8f6c7a0d5d2 (diff) | |
download | mana-7f15330d969e5c973429d03ca767551e7b67c3c3.tar.gz mana-7f15330d969e5c973429d03ca767551e7b67c3c3.tar.bz2 mana-7f15330d969e5c973429d03ca767551e7b67c3c3.tar.xz mana-7f15330d969e5c973429d03ca767551e7b67c3c3.zip |
Add support for viewing the health and maximum health of other nearby members of your party.
Diffstat (limited to 'src/gui/partywindow.h')
-rw-r--r-- | src/gui/partywindow.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gui/partywindow.h b/src/gui/partywindow.h index c915d9ce..6a8cc4fc 100644 --- a/src/gui/partywindow.h +++ b/src/gui/partywindow.h @@ -40,8 +40,6 @@ struct PartyMember { std::string name; - int health; - int healthMax; bool leader; bool online; Avatar *avatar; @@ -85,6 +83,11 @@ class PartyWindow : public Window, gcn::ActionListener bool leader = false, bool online = true); /** + * Update a member's HP and Max HP + */ + void updateMemberHP(int id, int hp, int maxhp); + + /** * Remove party member with the given id. */ void removeMember(int id); |