1
0
cuberite-2a/src/Entities/ExpOrb.h

42 lines
1007 B
C
Raw Normal View History

2013-11-25 19:05:52 +00:00
#pragma once
#include "Entity.h"
class cExpOrb :
public cEntity
{
typedef cExpOrb super;
public:
CLASS_PROTODEF(cExpOrb);
2013-11-25 19:05:52 +00:00
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;
2014-03-14 23:32:49 +00:00
/** 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
2013-11-25 19:05:52 +00:00
2014-03-14 23:32:49 +00:00
/** 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
2013-11-25 19:05:52 +00:00
protected:
int m_Reward;
2014-03-14 23:32:49 +00:00
/** The number of ticks that the entity has existed / timer between collect and destroy; in msec */
float m_Timer;
2013-11-25 19:05:52 +00:00
} ;