diff options
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being.h b/src/being.h index 362fa393..3c497b75 100644 --- a/src/being.h +++ b/src/being.h @@ -189,7 +189,7 @@ class Being : public Sprite * Sets visible equipments for this being. */ virtual void - setVisibleEquipment(Uint8 slot, Uint8 id); + setVisibleEquipment(Uint8 slot, int id); /** * Sets the sex for this being. @@ -333,7 +333,6 @@ class Being : public Sprite getYOffset() const { return getOffset(UP, DOWN); } std::auto_ptr<Equipment> mEquipment; - int mVisibleEquipment[6]; /**< Visible equipments */ protected: /** @@ -372,6 +371,7 @@ class Being : public Sprite Sint32 mPx, mPy; /**< Pixel coordinates */ std::vector<AnimatedSprite*> mSprites; + std::vector<int> mEquipmentSpriteIDs; }; #endif |