summaryrefslogtreecommitdiffstats
path: root/src/Entities/Floater.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2013-12-25 20:48:26 +0100
committerMattes D <github@xoft.cz>2013-12-25 20:48:26 +0100
commitabbb82d442f93030dd99e0ea00971bc28ed145a9 (patch)
treebf87d8decd5267a7c7991812015df54ad3eb8ce3 /src/Entities/Floater.h
parentMerge branch 'fixes&features' of git://github.com/tonibm19/MCServer (diff)
parentFixed Parentheses. (diff)
downloadcuberite-abbb82d442f93030dd99e0ea00971bc28ed145a9.tar
cuberite-abbb82d442f93030dd99e0ea00971bc28ed145a9.tar.gz
cuberite-abbb82d442f93030dd99e0ea00971bc28ed145a9.tar.bz2
cuberite-abbb82d442f93030dd99e0ea00971bc28ed145a9.tar.lz
cuberite-abbb82d442f93030dd99e0ea00971bc28ed145a9.tar.xz
cuberite-abbb82d442f93030dd99e0ea00971bc28ed145a9.tar.zst
cuberite-abbb82d442f93030dd99e0ea00971bc28ed145a9.zip
Diffstat (limited to 'src/Entities/Floater.h')
-rw-r--r--src/Entities/Floater.h17
1 files changed, 13 insertions, 4 deletions
diff --git a/src/Entities/Floater.h b/src/Entities/Floater.h
index 4db94986c..4bbe3f352 100644
--- a/src/Entities/Floater.h
+++ b/src/Entities/Floater.h
@@ -19,13 +19,22 @@ public:
virtual void SpawnOn(cClientHandle & a_Client) override;
virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
- bool CanPickup(void) const { return m_CanPickupItem; }
+ bool CanPickup(void) const { return m_CanPickupItem; }
+ int GetOwnerID(void) const { return m_PlayerID; }
+ int GetAttachedMobID(void) const { return m_AttachedMobID; }
protected:
- Vector3d m_Speed;
+ // Position
Vector3d m_ParticlePos;
+
+ // Bool needed to check if you can get a fish.
+ bool m_CanPickupItem;
+
+ // Countdown times
int m_PickupCountDown;
- int m_PlayerID;
int m_CountDownTime;
- bool m_CanPickupItem;
+
+ // Entity IDs
+ int m_PlayerID;
+ int m_AttachedMobID;
} ; \ No newline at end of file