Files
cuberite-2a/source/Entities/TNTEntity.h
T

33 lines
601 B
C++
Raw Normal View History

2013-07-29 12:13:03 +01:00
#pragma once
#include "Entity.h"
class cTNTEntity :
public cEntity
{
typedef cEntity super;
public:
CLASS_PROTODEF(cTNTEntity);
2013-08-17 18:08:39 +02:00
cTNTEntity(double a_X, double a_Y, double a_Z, double a_FuseTimeInSec);
cTNTEntity(const Vector3d & a_Pos, double a_FuseTimeInSec);
2013-07-29 12:13:03 +01:00
// cEntity overrides:
virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
protected:
2013-08-17 18:08:39 +02:00
double m_Counter; ///< How much time has elapsed since the object was created, in seconds
double m_MaxFuseTime; ///< How long the fuse is, in seconds
2013-07-29 12:13:03 +01:00
};