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

#include "cPassiveAggressiveMonster.h"

class cZombiepigman : public cPassiveAggressiveMonster
{
public:
	cZombiepigman();
	~cZombiepigman();

	virtual bool IsA( const char* a_EntityType );

	virtual void Tick(float a_Dt);
	virtual void KilledBy( cEntity* a_Killer );
};