2012-12-21 03:04:08 -08:00
|
|
|
|
2012-06-14 06:06:06 -07:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 13:53:08 -07:00
|
|
|
#include "PassiveAggressiveMonster.h"
|
2012-06-14 06:06:06 -07:00
|
|
|
|
2012-12-21 03:04:08 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cEnderman :
|
|
|
|
public cPassiveAggressiveMonster
|
2012-06-14 06:06:06 -07:00
|
|
|
{
|
2012-12-21 03:04:08 -08:00
|
|
|
typedef cPassiveAggressiveMonster super;
|
|
|
|
|
2012-06-14 06:06:06 -07:00
|
|
|
public:
|
2012-12-21 03:04:08 -08:00
|
|
|
cEnderman(void);
|
|
|
|
|
2012-12-21 04:21:20 -08:00
|
|
|
CLASS_PROTODEF(cEnderman);
|
2012-12-21 03:04:08 -08:00
|
|
|
|
2013-07-01 03:39:56 -07:00
|
|
|
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
|
2013-10-09 13:02:59 -07:00
|
|
|
|
|
|
|
bool IsScreaming(void) const {return m_bIsScreaming; }
|
|
|
|
BLOCKTYPE GetCarriedBlock(void) const {return CarriedBlock; }
|
|
|
|
NIBBLETYPE GetCarriedMeta(void) const {return CarriedMeta; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
bool m_bIsScreaming;
|
|
|
|
BLOCKTYPE CarriedBlock;
|
|
|
|
NIBBLETYPE CarriedMeta;
|
|
|
|
|
2012-12-21 03:04:08 -08:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
2012-06-14 06:06:06 -07:00
|
|
|
|
|
|
|
|