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

#include "cPassiveMonster.h"

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

	virtual bool IsA( const char* a_EntityType );

	virtual void KilledBy( cEntity* a_Killer );
};