summaryrefslogtreecommitdiffstats
path: root/source/Pickup.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Pickup.h')
-rw-r--r--source/Pickup.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/Pickup.h b/source/Pickup.h
index d3be60794..b294b4e45 100644
--- a/source/Pickup.h
+++ b/source/Pickup.h
@@ -38,7 +38,13 @@ public:
virtual void Tick(float a_Dt, MTRand & a_TickRandom) override;
virtual void HandlePhysics(float a_Dt) override;
+ short GetHealth(void) const { return m_Health; }
+
+ /// Returns the number of ticks that this entity has existed
+ short GetAge(void) const { return (short)(m_Timer / 50); }
+
private:
+ short m_Health;
Vector3d m_ResultingSpeed; //Can be used to modify the resulting speed for the current tick ;)