2012-12-21 03:04:08 -08:00
|
|
|
|
2011-12-25 14:47:12 -08:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 13:53:08 -07:00
|
|
|
#include "AggressiveMonster.h"
|
2011-12-25 14:47:12 -08:00
|
|
|
|
2012-12-21 03:04:08 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cPassiveAggressiveMonster :
|
|
|
|
public cAggressiveMonster
|
2011-12-25 14:47:12 -08:00
|
|
|
{
|
2012-12-21 03:04:08 -08:00
|
|
|
typedef cAggressiveMonster super;
|
|
|
|
|
2011-12-25 14:47:12 -08:00
|
|
|
public:
|
2012-12-22 01:39:13 -08:00
|
|
|
cPassiveAggressiveMonster(const AString & a_ConfigName, char a_ProtocolMobType, const AString & a_SoundHurt, const AString & a_SoundDeath);
|
2012-12-21 03:04:08 -08:00
|
|
|
|
|
|
|
virtual void DoTakeDamage(TakeDamageInfo & a_TDI) override;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-12-25 14:47:12 -08:00
|
|
|
|