2012-06-14 13:06:06 +00:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 20:53:08 +00:00
|
|
|
#include "PassiveMonster.h"
|
2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
class cChicken : public cPassiveMonster
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cChicken();
|
|
|
|
~cChicken();
|
|
|
|
|
|
|
|
virtual bool IsA( const char* a_EntityType );
|
|
|
|
|
|
|
|
virtual void KilledBy( cEntity* a_Killer );
|
|
|
|
};
|