summaryrefslogtreecommitdiffstats
path: root/source/TNTEntity.h
diff options
context:
space:
mode:
authorkeyboard.osh@gmail.com <keyboard.osh@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-04-18 04:42:45 +0200
committerkeyboard.osh@gmail.com <keyboard.osh@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-04-18 04:42:45 +0200
commitb75fc5f4e8dc837f069e89541b52144defa2d1b9 (patch)
tree2e9a05e1ed16da917c5e8651b1bb70100a9db153 /source/TNTEntity.h
parentNoise: removed the unused SSE branches and unused interpolation methods. Removed the Noise.inc file. (diff)
downloadcuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar.gz
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar.bz2
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar.lz
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar.xz
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.tar.zst
cuberite-b75fc5f4e8dc837f069e89541b52144defa2d1b9.zip
Diffstat (limited to '')
-rw-r--r--source/TNTEntity.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/source/TNTEntity.h b/source/TNTEntity.h
new file mode 100644
index 000000000..8414b2430
--- /dev/null
+++ b/source/TNTEntity.h
@@ -0,0 +1,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
+};
+
+
+
+