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

#include "PassiveAggressiveMonster.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 );
};