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 "Monster.h"
|
2011-12-25 14:47:12 -08:00
|
|
|
|
2012-12-21 03:04:08 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cPassiveMonster :
|
|
|
|
public cMonster
|
2011-12-25 14:47:12 -08:00
|
|
|
{
|
2012-12-21 03:04:08 -08:00
|
|
|
typedef cMonster super;
|
|
|
|
|
2011-12-25 14:47:12 -08:00
|
|
|
public:
|
2012-12-22 01:39:13 -08:00
|
|
|
cPassiveMonster(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 Tick(float a_Dt) override;
|
|
|
|
|
|
|
|
/// When hit by someone, run away
|
|
|
|
virtual void DoTakeDamage(TakeDamageInfo & a_TDI) override;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
2011-12-25 14:47:12 -08:00
|
|
|
|
|
|
|
|