summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Enderman.h
blob: 44719ea5a84a2f59ff1950cba9889f22b0128120 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

#pragma once

#include "PassiveAggressiveMonster.h"





class cEnderman :
	public cPassiveAggressiveMonster
{
	typedef cPassiveAggressiveMonster super;
	
public:
	cEnderman(void);

	CLASS_PROTODEF(cEnderman);

	virtual void GetDrops(cItems & a_Drops, cPawn * a_Killer = NULL) override;
} ;