summaryrefslogtreecommitdiffstats
path: root/src/Entities/ExpOrb.h
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-03-15 00:32:49 +0100
committerHowaner <franzi.moos@googlemail.com>2014-03-15 00:32:49 +0100
commit28898f710b191abb610f31085d6ae076511cc89c (patch)
treee824b9cd817f86bcfe8b1d95eab9f227af1945a9 /src/Entities/ExpOrb.h
parentAdd fireball interact (diff)
downloadcuberite-28898f710b191abb610f31085d6ae076511cc89c.tar
cuberite-28898f710b191abb610f31085d6ae076511cc89c.tar.gz
cuberite-28898f710b191abb610f31085d6ae076511cc89c.tar.bz2
cuberite-28898f710b191abb610f31085d6ae076511cc89c.tar.lz
cuberite-28898f710b191abb610f31085d6ae076511cc89c.tar.xz
cuberite-28898f710b191abb610f31085d6ae076511cc89c.tar.zst
cuberite-28898f710b191abb610f31085d6ae076511cc89c.zip
Diffstat (limited to 'src/Entities/ExpOrb.h')
-rw-r--r--src/Entities/ExpOrb.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/Entities/ExpOrb.h b/src/Entities/ExpOrb.h
index 47d86922c..b75859e4c 100644
--- a/src/Entities/ExpOrb.h
+++ b/src/Entities/ExpOrb.h
@@ -21,10 +21,22 @@ public:
// Override functions
virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
virtual void SpawnOn(cClientHandle & a_Client) override;
+
+ /** Returns the number of ticks that this entity has existed */
+ int GetAge(void) const { return (int)(m_Timer / 50); } // tolua_export
+
+ /** Set the number of ticks that this entity has existed */
+ void SetAge(int a_Age) { m_Timer = (float)(a_Age * 50); } // tolua_export
- // cExpOrb functions
- int GetReward(void) const { return m_Reward; }
+ /** Get the exp amount */
+ int GetReward(void) const { return m_Reward; } // tolua_export
+
+ /** Set the exp amount */
+ void SetReward(int a_Reward) { m_Reward = a_Reward; } // tolua_export
protected:
int m_Reward;
+
+ /** The number of ticks that the entity has existed / timer between collect and destroy; in msec */
+ float m_Timer;
} ; \ No newline at end of file