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

25 lines
470 B
C
Raw Normal View History

#pragma once
#include "AggressiveMonster.h"
class cPassiveAggressiveMonster :
public cAggressiveMonster
{
typedef cAggressiveMonster super;
public:
cPassiveAggressiveMonster(const AString & a_ConfigName, eMonsterType a_MobType, const AString & a_SoundHurt, const AString & a_SoundDeath, double a_Width, double a_Height);
2014-04-25 22:32:30 +00:00
virtual bool DoTakeDamage(TakeDamageInfo & a_TDI) override;
2016-10-12 12:38:45 +00:00
virtual void EventSeePlayer(cPlayer *, cChunk & a_Chunk) override;
} ;