diff options
author | Mattes D <github@xoft.cz> | 2014-02-18 23:08:12 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-02-18 23:08:12 +0100 |
commit | 98332c5b7662deb1f14792176414bc4b5f48301b (patch) | |
tree | 974477fd292b4b3dd44d0318bcab77770c890190 /src/Entities/Entity.h | |
parent | ProtoProxy: ignoring PolarSSL build files. (diff) | |
parent | Properly exported and documented paintings (diff) | |
download | cuberite-98332c5b7662deb1f14792176414bc4b5f48301b.tar cuberite-98332c5b7662deb1f14792176414bc4b5f48301b.tar.gz cuberite-98332c5b7662deb1f14792176414bc4b5f48301b.tar.bz2 cuberite-98332c5b7662deb1f14792176414bc4b5f48301b.tar.lz cuberite-98332c5b7662deb1f14792176414bc4b5f48301b.tar.xz cuberite-98332c5b7662deb1f14792176414bc4b5f48301b.tar.zst cuberite-98332c5b7662deb1f14792176414bc4b5f48301b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Entities/Entity.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Entities/Entity.h b/src/Entities/Entity.h index b2edfc2b4..29ffd949d 100644 --- a/src/Entities/Entity.h +++ b/src/Entities/Entity.h @@ -81,6 +81,7 @@ public: etProjectile, etExpOrb, etFloater, + etPainting, // Common variations etMob = etMonster, // DEPRECATED, use etMonster instead! @@ -139,6 +140,7 @@ public: bool IsProjectile (void) const { return (m_EntityType == etProjectile); } bool IsExpOrb (void) const { return (m_EntityType == etExpOrb); } bool IsFloater (void) const { return (m_EntityType == etFloater); } + bool IsPainting (void) const { return (m_EntityType == etPainting); } /// Returns true if the entity is of the specified class or a subclass (cPawn's IsA("cEntity") returns true) virtual bool IsA(const char * a_ClassName) const; |