diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-01-05 22:56:42 +0200 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-01-05 22:56:42 +0200 |
commit | 1c49a83df05dbf6837687e1bfc5b142a680144ed (patch) | |
tree | 5e1ae2d371ca8ec6aa5caa95cf8e4bee00f726ee /src/gui/userpalette.cpp | |
parent | 6941cbc58099ee54ba326382eaf4de805d933e0e (diff) | |
download | plus-1c49a83df05dbf6837687e1bfc5b142a680144ed.tar.gz plus-1c49a83df05dbf6837687e1bfc5b142a680144ed.tar.bz2 plus-1c49a83df05dbf6837687e1bfc5b142a680144ed.tar.xz plus-1c49a83df05dbf6837687e1bfc5b142a680144ed.zip |
Add hp bar to local player.
Diffstat (limited to 'src/gui/userpalette.cpp')
-rw-r--r-- | src/gui/userpalette.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/userpalette.cpp b/src/gui/userpalette.cpp index 03e5c1eed..46f1b72b3 100644 --- a/src/gui/userpalette.cpp +++ b/src/gui/userpalette.cpp @@ -52,6 +52,8 @@ const std::string ColorTypeNames[] = "ColorParticle", "ColorPickupInfo", "ColorExpInfo", + "ColorPlayerHp", + "ColorPlayerHp2", "ColorHitPlayerMonster", "ColorHitMonsterPlayer", "ColorHitPlayerPlayer", @@ -124,6 +126,9 @@ UserPalette::UserPalette(): addColor(PARTICLE, 0xffffff, STATIC, _("Particle Effects")); addColor(PICKUP_INFO, 0x28dc28, STATIC, _("Pickup Notification")); addColor(EXP_INFO, 0xffff00, STATIC, _("Exp Notification")); + addColor(PLAYER_HP, 0x00ff00, STATIC, _("Player HP bar"), 50); + addColor(PLAYER_HP2, 0xff0000, STATIC, + _("Player HP bar (second color)"), 50); addColor(HIT_PLAYER_MONSTER, 0x0064ff, STATIC, _("Player Hits Monster")); addColor(HIT_MONSTER_PLAYER, 0xff3232, STATIC, _("Monster Hits Player")); addColor(HIT_PLAYER_PLAYER, 0xff5050, STATIC, |