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