summaryrefslogtreecommitdiff
path: root/src/being/being.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-06-21 13:53:25 +0300
committerAndrei Karas <akaras@inbox.ru>2016-06-21 13:58:49 +0300
commit48cff567cb37f3ce18ee32e75bb7570db72368e0 (patch)
treee40f3656b0b37f6ca51a1da27a7050552b7c86eb /src/being/being.h
parent26891e5a71320228e49f0f42b8efdf5284e8e853 (diff)
downloadplus-48cff567cb37f3ce18ee32e75bb7570db72368e0.tar.gz
plus-48cff567cb37f3ce18ee32e75bb7570db72368e0.tar.bz2
plus-48cff567cb37f3ce18ee32e75bb7570db72368e0.tar.xz
plus-48cff567cb37f3ce18ee32e75bb7570db72368e0.zip
Split Being::setSprite into Being::setSprite and Being::setSpriteCards.
Diffstat (limited to 'src/being/being.h')
-rw-r--r--src/being/being.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/being/being.h b/src/being/being.h
index 7dbabd396..127385d16 100644
--- a/src/being/being.h
+++ b/src/being/being.h
@@ -315,14 +315,16 @@ class Being notfinal : public ActorSprite,
Party *getParty() const restrict2 noexcept2 A_WARN_UNUSED
{ return mParty; }
- /**
- * Sets visible equipments for this being.
- */
void setSprite(const unsigned int slot,
const int id,
std::string color,
- ItemColor colorId,
- CardsList cards) restrict2;
+ ItemColor colorId) restrict2;
+
+ void setSpriteCards(const unsigned int slot,
+ const int id,
+ std::string color,
+ ItemColor colorId,
+ CardsList cards) restrict2;
void setWeaponId(const int id) restrict2;