diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-18 23:40:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-18 23:40:58 +0300 |
commit | 1b1cfaf22ab8281943abed6f909fc32f6da46e61 (patch) | |
tree | 9bd5a44b9a11f6a80598a67012b310942eb366e1 /src/being/being.h | |
parent | 7f981b81b14612d9f35cd729401c63f9a019edd5 (diff) | |
download | plus-1b1cfaf22ab8281943abed6f909fc32f6da46e61.tar.gz plus-1b1cfaf22ab8281943abed6f909fc32f6da46e61.tar.bz2 plus-1b1cfaf22ab8281943abed6f909fc32f6da46e61.tar.xz plus-1b1cfaf22ab8281943abed6f909fc32f6da46e61.zip |
Add chat object to owner being.
Diffstat (limited to 'src/being/being.h')
-rw-r--r-- | src/being/being.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/being/being.h b/src/being/being.h index ed1127844..a65fb1af0 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -61,6 +61,7 @@ class Party; class SpeechBubble; class Text; +struct ChatObject; struct ParticleInfo; extern volatile int cur_time; @@ -893,6 +894,11 @@ class Being notfinal : public ActorSprite, virtual int getLastAttackY() const { return mLastAttackY; } + void setChat(ChatObject *const obj); + + const ChatObject *getChat() const + { return mChat; } + protected: /** * Updates name's location. @@ -1011,6 +1017,7 @@ class Being notfinal : public ActorSprite, std::vector<Being*> mPets; Being *mOwner; Particle *mSpecialParticle; + ChatObject *mChat; int mX; // position in tiles int mY; // position in tiles |