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
|
|
|
|
2013-07-01 10:39:56 +00:00
|
|
|
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
|
2013-10-09 21:02:59 +01: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 11:04:08 +00:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
|