summaryrefslogtreecommitdiffstats
path: root/source/cChicken.h
blob: b0419741433944d30de62228d28343213f74b553 (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 );
};