summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Enderman.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Mobs/Enderman.h')
-rw-r--r--source/Mobs/Enderman.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/source/Mobs/Enderman.h b/source/Mobs/Enderman.h
deleted file mode 100644
index 32e40e70b..000000000
--- a/source/Mobs/Enderman.h
+++ /dev/null
@@ -1,36 +0,0 @@
-
-#pragma once
-
-#include "PassiveAggressiveMonster.h"
-
-
-
-
-
-class cEnderman :
- public cPassiveAggressiveMonster
-{
- typedef cPassiveAggressiveMonster super;
-
-public:
- cEnderman(void);
-
- CLASS_PROTODEF(cEnderman);
-
- virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
-
- 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;
-
-} ;
-
-
-
-