summaryrefslogtreecommitdiffstats
path: root/src/Entities/Floater.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Entities/Floater.h')
-rw-r--r--src/Entities/Floater.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Entities/Floater.h b/src/Entities/Floater.h
index 89ee8cc08..59402393f 100644
--- a/src/Entities/Floater.h
+++ b/src/Entities/Floater.h
@@ -27,12 +27,16 @@ public:
bool CanPickup(void) const { return m_CanPickupItem; }
UInt32 GetOwnerID(void) const { return m_PlayerID; }
UInt32 GetAttachedMobID(void) const { return m_AttachedMobID; }
+ Vector3d GetBitePos(void) const { return m_BitePos; }
// tolua_end
protected:
// Position
Vector3d m_ParticlePos;
+ // Position just before the floater gets pulled under by a fish
+ Vector3d m_BitePos;
+
// Bool needed to check if you can get a fish.
bool m_CanPickupItem;