1
0
cuberite-2a/src/Mobs/PassiveMonster.h

31 lines
652 B
C
Raw Normal View History

#pragma once
#include "Monster.h"
class cPassiveMonster :
public cMonster
{
typedef cMonster super;
public:
2013-10-20 08:23:30 +00:00
cPassiveMonster(const AString & a_ConfigName, eType a_MobType, 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;
2014-01-29 19:02:41 +00:00
/** Returns the item that the animal of this class follows when a player holds it in hand
Return an empty item not to follow (default). */
virtual const cItem GetFollowedItem(void) const { return cItem(); }
} ;