summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Chicken.h
blob: acfb202e389cf7e5b137cefe059430f95b18cb29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "PassiveMonster.h"

class cChicken : public cPassiveMonster
{
public:
	cChicken();
	~cChicken();

	virtual bool IsA( const char* a_EntityType );

	virtual void KilledBy( cEntity* a_Killer );
};