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

#include "cPassiveAggressiveMonster.h"

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

	virtual bool IsA( const char* a_EntityType );

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