summaryrefslogtreecommitdiffstats
path: root/src/Entities/Entity.h
diff options
context:
space:
mode:
authorLogicParrot <LogicParrot@users.noreply.github.com>2016-02-02 18:40:03 +0100
committerLogicParrot <LogicParrot@users.noreply.github.com>2016-02-02 18:40:03 +0100
commita8599efd778d601aa67703a558bc171f206f3763 (patch)
treeb6f5c8c073837c43f15b68414db1aaa92bbbab6a /src/Entities/Entity.h
parentMerge pull request #2936 from mathias-github/master (diff)
parentFix cPawn pushing (diff)
downloadcuberite-a8599efd778d601aa67703a558bc171f206f3763.tar
cuberite-a8599efd778d601aa67703a558bc171f206f3763.tar.gz
cuberite-a8599efd778d601aa67703a558bc171f206f3763.tar.bz2
cuberite-a8599efd778d601aa67703a558bc171f206f3763.tar.lz
cuberite-a8599efd778d601aa67703a558bc171f206f3763.tar.xz
cuberite-a8599efd778d601aa67703a558bc171f206f3763.tar.zst
cuberite-a8599efd778d601aa67703a558bc171f206f3763.zip
Diffstat (limited to 'src/Entities/Entity.h')
-rw-r--r--src/Entities/Entity.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Entities/Entity.h b/src/Entities/Entity.h
index 3715fb5c4..dbfc019e7 100644
--- a/src/Entities/Entity.h
+++ b/src/Entities/Entity.h
@@ -423,6 +423,9 @@ public:
/** Detaches from the currently attached entity, if any */
virtual void Detach(void);
+ /** Returns true if this entity is attached to the specified entity */
+ bool IsAttachedTo(const cEntity * a_Entity) const;
+
/** Makes sure head yaw is not over the specified range. */
void WrapHeadYaw();