From a49c004278b0e300521e9cedf44a46ac843a958b Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sat, 13 Apr 2013 21:02:10 +0000 Subject: Rewritten entities so that they are owned by individual chunks and ticked within their chunk's Tick() git-svn-id: http://mc-server.googlecode.com/svn/trunk@1385 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Pawn.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source/Pawn.h') diff --git a/source/Pawn.h b/source/Pawn.h index 9ddc61296..dddb98699 100644 --- a/source/Pawn.h +++ b/source/Pawn.h @@ -83,7 +83,7 @@ public: cPawn(eEntityType a_EntityType); - virtual void Tick(float a_Dt, MTRand & a_TickRandom) override; + virtual void Tick(float a_Dt, cChunk & a_Chunk) override; // tolua_begin @@ -150,10 +150,12 @@ public: virtual void InStateBurning(float a_Dt); - virtual void CheckMetaDataBurn(void); + virtual void CheckMetaDataBurn(cChunk & a_Chunk); virtual void SetMaxHealth(short a_MaxHealth); virtual short GetMaxHealth() { return m_MaxHealth; } + + bool IsBurning(void) const { return (m_MetaData == BURNING); } protected: short m_Health; -- cgit v1.2.3