summaryrefslogtreecommitdiffstats
path: root/source/Entities/TNTEntity.h
blob: eb5040e8a71b810f10ecf1c69e796013d3903071 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

#pragma once

#include "Entity.h"





class cTNTEntity :
	public cEntity
{
	typedef cEntity super;
	
public:
	CLASS_PROTODEF(cTNTEntity);

	cTNTEntity(double a_X, double a_Y, double a_Z, double a_FuseTimeInSec);
	cTNTEntity(const Vector3d & a_Pos, double a_FuseTimeInSec);
	
	// cEntity overrides:
	virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
	virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
	
protected:
	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
};