1
0
cuberite-2a/source/Mobs/PassiveAggressiveMonster.h
2012-12-22 09:39:13 +00:00

24 lines
370 B
C++

#pragma once
#include "AggressiveMonster.h"
class cPassiveAggressiveMonster :
public cAggressiveMonster
{
typedef cAggressiveMonster super;
public:
cPassiveAggressiveMonster(const AString & a_ConfigName, char a_ProtocolMobType, const AString & a_SoundHurt, const AString & a_SoundDeath);
virtual void DoTakeDamage(TakeDamageInfo & a_TDI) override;
} ;