2012-12-21 11:04:08 +00:00
|
|
|
|
2012-06-14 13:06:06 +00:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 20:53:08 +00:00
|
|
|
#include "PassiveAggressiveMonster.h"
|
2012-06-14 13:06:06 +00:00
|
|
|
|
2012-12-21 11:04:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cEnderman :
|
|
|
|
public cPassiveAggressiveMonster
|
2012-06-14 13:06:06 +00:00
|
|
|
{
|
2012-12-21 11:04:08 +00:00
|
|
|
typedef cPassiveAggressiveMonster super;
|
|
|
|
|
2012-06-14 13:06:06 +00:00
|
|
|
public:
|
2012-12-21 11:04:08 +00:00
|
|
|
cEnderman(void);
|
|
|
|
|
2012-12-21 12:21:20 +00:00
|
|
|
CLASS_PROTODEF(cEnderman);
|
2012-12-21 11:04:08 +00:00
|
|
|
|
|
|
|
virtual void GetDrops(cItems & a_Drops, cPawn * a_Killer = NULL) override;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
|