summaryrefslogtreecommitdiff
path: root/src/being/actorsprite.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/being/actorsprite.h')
-rw-r--r--src/being/actorsprite.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/being/actorsprite.h b/src/being/actorsprite.h
index d5cb16613..76a4a53fc 100644
--- a/src/being/actorsprite.h
+++ b/src/being/actorsprite.h
@@ -179,6 +179,12 @@ class ActorSprite notfinal : public CompoundSprite, public Actor
virtual void setRiding(const bool b)
{ mHorseId = b ? 1 : 0; }
+ virtual void setTrickDead(const bool b)
+ { mTrickDead = b; }
+
+ bool isTrickDead() const A_WARN_UNUSED
+ { return mTrickDead; }
+
protected:
/**
* Notify self that the stun mode has been updated. Invoked by
@@ -244,6 +250,7 @@ class ActorSprite notfinal : public CompoundSprite, public Actor
bool mMustResetParticles;
bool mPoison;
bool mHaveCart;
+ bool mTrickDead;
};
#endif // BEING_ACTORSPRITE_H