2012-12-21 06:04:08 -05:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "PassiveAggressiveMonster.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cEnderman :
|
|
|
|
public cPassiveAggressiveMonster
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-12-21 06:04:08 -05:00
|
|
|
typedef cPassiveAggressiveMonster super;
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
public:
|
2012-12-21 06:04:08 -05:00
|
|
|
cEnderman(void);
|
|
|
|
|
2012-12-21 07:21:20 -05:00
|
|
|
CLASS_PROTODEF(cEnderman);
|
2012-12-21 06:04:08 -05:00
|
|
|
|
2013-07-01 06:39:56 -04:00
|
|
|
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
|
2013-10-09 16:02:59 -04: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 06:04:08 -05:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|