2012-12-21 06:04:08 -05:00
|
|
|
|
2011-12-25 17:47:12 -05:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "AggressiveMonster.h"
|
2011-12-25 17:47:12 -05:00
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cPassiveAggressiveMonster :
|
|
|
|
public cAggressiveMonster
|
2011-12-25 17:47:12 -05:00
|
|
|
{
|
2012-12-21 06:04:08 -05:00
|
|
|
typedef cAggressiveMonster super;
|
|
|
|
|
2011-12-25 17:47:12 -05:00
|
|
|
public:
|
2013-07-01 06:39:56 -04: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 06:04:08 -05:00
|
|
|
|
|
|
|
virtual void DoTakeDamage(TakeDamageInfo & a_TDI) override;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-12-25 17:47:12 -05:00
|
|
|
|