diff options
Diffstat (limited to 'source/Mobs/PassiveMonster.h')
-rw-r--r-- | source/Mobs/PassiveMonster.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/source/Mobs/PassiveMonster.h b/source/Mobs/PassiveMonster.h deleted file mode 100644 index ae0bea3fb..000000000 --- a/source/Mobs/PassiveMonster.h +++ /dev/null @@ -1,26 +0,0 @@ - -#pragma once - -#include "Monster.h" - - - - - -class cPassiveMonster : - public cMonster -{ - typedef cMonster super; - -public: - cPassiveMonster(const AString & a_ConfigName, char a_ProtocolMobType, const AString & a_SoundHurt, const AString & a_SoundDeath, double a_Width, double a_Height); - - virtual void Tick(float a_Dt, cChunk & a_Chunk) override; - - /// When hit by someone, run away - virtual void DoTakeDamage(TakeDamageInfo & a_TDI) override; -} ; - - - - |