diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-07-02 22:07:34 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-07-02 22:07:34 +0200 |
commit | 89a26cc786f3673cf7b5a100300d8aa595735cc3 (patch) | |
tree | bb730e4d205d596232ad1941d92c7a2c5a5a0e72 /src/Entities/ArrowEntity.h | |
parent | Vector clamping fixes (diff) | |
download | cuberite-89a26cc786f3673cf7b5a100300d8aa595735cc3.tar cuberite-89a26cc786f3673cf7b5a100300d8aa595735cc3.tar.gz cuberite-89a26cc786f3673cf7b5a100300d8aa595735cc3.tar.bz2 cuberite-89a26cc786f3673cf7b5a100300d8aa595735cc3.tar.lz cuberite-89a26cc786f3673cf7b5a100300d8aa595735cc3.tar.xz cuberite-89a26cc786f3673cf7b5a100300d8aa595735cc3.tar.zst cuberite-89a26cc786f3673cf7b5a100300d8aa595735cc3.zip |
Diffstat (limited to 'src/Entities/ArrowEntity.h')
-rw-r--r-- | src/Entities/ArrowEntity.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Entities/ArrowEntity.h b/src/Entities/ArrowEntity.h index 1fe3032ee..99b7bae31 100644 --- a/src/Entities/ArrowEntity.h +++ b/src/Entities/ArrowEntity.h @@ -58,8 +58,14 @@ public: /// Sets the IsCritical flag void SetIsCritical(bool a_IsCritical) { m_IsCritical = a_IsCritical; } + + /** Gets the block arrow is in */ + Vector3i GetBlockHit(void) const { return m_HitBlockPos; } // tolua_end + + /** Sets the block arrow is in */ + void SetBlockHit(const Vector3i & a_BlockHit) { m_HitBlockPos = a_BlockHit; } protected: |