diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-03-15 00:43:38 +0100 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-03-15 00:43:38 +0100 |
commit | cf137392885479d4e3f057c64cb078a6025f4b25 (patch) | |
tree | 916678451890d63d2f2a1671e8e339fd27da7a37 /src/Entities/ExpOrb.h | |
parent | Add ExpOrb saving. (diff) | |
download | cuberite-cf137392885479d4e3f057c64cb078a6025f4b25.tar cuberite-cf137392885479d4e3f057c64cb078a6025f4b25.tar.gz cuberite-cf137392885479d4e3f057c64cb078a6025f4b25.tar.bz2 cuberite-cf137392885479d4e3f057c64cb078a6025f4b25.tar.lz cuberite-cf137392885479d4e3f057c64cb078a6025f4b25.tar.xz cuberite-cf137392885479d4e3f057c64cb078a6025f4b25.tar.zst cuberite-cf137392885479d4e3f057c64cb078a6025f4b25.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Entities/ExpOrb.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/Entities/ExpOrb.h b/src/Entities/ExpOrb.h index b75859e4c..c1150bd03 100644 --- a/src/Entities/ExpOrb.h +++ b/src/Entities/ExpOrb.h @@ -7,30 +7,33 @@ +// tolua_begin class cExpOrb : public cEntity { typedef cExpOrb super; public: + // tolua_end + CLASS_PROTODEF(cExpOrb); - + cExpOrb(double a_X, double a_Y, double a_Z, int a_Reward); cExpOrb(const Vector3d & a_Pos, int a_Reward); // 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 - + 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 /** 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 @@ -39,4 +42,4 @@ protected: /** 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 +} ; // tolua_export
\ No newline at end of file |