diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-03-10 18:17:28 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-03-10 18:17:28 +0100 |
commit | 0a509ab85e395bf46e29b7b554d736fadfaed0ba (patch) | |
tree | f67665e089d372b89505f1b9a3ee21c8cd9f0d8c /src/Entities/TNTEntity.h | |
parent | Be more parinoid about int sizes (diff) | |
parent | Fixed MSVC2008 compilation. (diff) | |
download | cuberite-0a509ab85e395bf46e29b7b554d736fadfaed0ba.tar cuberite-0a509ab85e395bf46e29b7b554d736fadfaed0ba.tar.gz cuberite-0a509ab85e395bf46e29b7b554d736fadfaed0ba.tar.bz2 cuberite-0a509ab85e395bf46e29b7b554d736fadfaed0ba.tar.lz cuberite-0a509ab85e395bf46e29b7b554d736fadfaed0ba.tar.xz cuberite-0a509ab85e395bf46e29b7b554d736fadfaed0ba.tar.zst cuberite-0a509ab85e395bf46e29b7b554d736fadfaed0ba.zip |
Diffstat (limited to 'src/Entities/TNTEntity.h')
-rw-r--r-- | src/Entities/TNTEntity.h | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/src/Entities/TNTEntity.h b/src/Entities/TNTEntity.h index d1fcae766..116f5a8cb 100644 --- a/src/Entities/TNTEntity.h +++ b/src/Entities/TNTEntity.h @@ -16,19 +16,28 @@ public: // tolua_end CLASS_PROTODEF(cTNTEntity); - cTNTEntity(double a_X, double a_Y, double a_Z, double a_FuseTimeInSec); - cTNTEntity(const Vector3d & a_Pos, double a_FuseTimeInSec); + cTNTEntity(double a_X, double a_Y, double a_Z, int a_FuseTicks = 80); + cTNTEntity(const Vector3d & a_Pos, int a_FuseTicks = 80); // cEntity overrides: virtual void SpawnOn(cClientHandle & a_ClientHandle) override; virtual void Tick(float a_Dt, cChunk & a_Chunk) override; - - double GetCounterTime(void) const { return m_Counter; } // tolua_export - double GetMaxFuseTime(void) const { return m_MaxFuseTime; } // tolua_export + + // tolua_begin + + /** Explode the tnt */ + void Explode(void); + + /** Returns the fuse ticks until the tnt will explode */ + int GetFuseTicks(void) const { return m_FuseTicks; } + + /** Set the fuse ticks until the tnt will explode */ + void SetFuseTicks(int a_FuseTicks) { m_FuseTicks = a_FuseTicks; } + + // tolua_end 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 + int m_FuseTicks; ///< How much ticks is left, while the tnt will explode }; // tolua_export |