diff options
Diffstat (limited to 'src/being/being.h')
-rw-r--r-- | src/being/being.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/being/being.h b/src/being/being.h index 376c180d5..bf05d091b 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -842,6 +842,9 @@ class Being notfinal : public ActorSprite, int getSpriteID(const int slot) const restrict2 A_WARN_UNUSED; + const BeingSlot &getSpriteSlot(const int slot) const + restrict2 A_WARN_UNUSED; + ItemColor getSpriteColor(const int slot) const restrict2 A_WARN_UNUSED; void setHairStyle(const unsigned int slot, @@ -853,6 +856,9 @@ class Being notfinal : public ActorSprite, void setHairColor(const ItemColor color) restrict2 noexcept2 { mHairColor = color; } + void setSpriteSlot(const unsigned int slot, + const BeingSlot &beingSlot); + ItemColor getHairColor() const noexcept2 A_WARN_UNUSED { return mHairColor; } |