diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-27 18:58:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-27 18:58:44 +0300 |
commit | 19125da4c29f4475aafa4bf9bf2d9400bceff657 (patch) | |
tree | 60da9e8a38cebb46ad50a5e60d4dd43cca36c89f /src/being/being.h | |
parent | cf71f3e3ce615bbd6ad1180d3edc8d995fc1914e (diff) | |
download | plus-19125da4c29f4475aafa4bf9bf2d9400bceff657.tar.gz plus-19125da4c29f4475aafa4bf9bf2d9400bceff657.tar.bz2 plus-19125da4c29f4475aafa4bf9bf2d9400bceff657.tar.xz plus-19125da4c29f4475aafa4bf9bf2d9400bceff657.zip |
Show hp bar in own homunculus.
Diffstat (limited to 'src/being/being.h')
-rw-r--r-- | src/being/being.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/being/being.h b/src/being/being.h index 737a5efd5..6c7f480af 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -957,6 +957,11 @@ class Being notfinal : public ActorSprite, { return mLastAttackY; } #ifdef EATHENA_SUPPORT + void drawHomunculus(Graphics *restrict const graphics, + const int offsetX, + const int offsetY) const + restrict2 A_NONNULL(2); + void setTrickDead(const bool b) restrict2 override final; void setChat(ChatObject *restrict const obj) restrict2; @@ -1067,6 +1072,12 @@ class Being notfinal : public ActorSprite, const int x, const int y) const restrict2 A_NONNULL(2); +#ifdef EATHENA_SUPPORT + void drawHomunculusSpriteAt(Graphics *restrict const graphics, + const int x, + const int y) const restrict2 A_NONNULL(2); +#endif // EATHENA_SUPPORT + void drawCompound(Graphics *const graphics, const int posX, const int posY) const A_NONNULL(2); |