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