diff options
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); |