blob: 8414b2430e45c0aa199f74f67e426f59226c6836 (
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
33
|
#pragma once
#include "Entity.h"
#include "Defines.h"
class cTNTEntity :
public cEntity
{
typedef cEntity super;
public:
CLASS_PROTODEF(cTNTEntity);
cTNTEntity(int a_X,int a_Y,int a_Z,float a_MaxFuseTime);
cTNTEntity(const Vector3i a_Pos,float a_MaxFuseTime);
// cEntity overrides:
virtual void Initialize(cWorld * a_World) override;
virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
private:
float m_Counter; //In seconds too
float m_MaxFuseTime; //in seconds
};
|