diff options
Diffstat (limited to 'src/Mobs/EnderDragon.h')
-rw-r--r-- | src/Mobs/EnderDragon.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Mobs/EnderDragon.h b/src/Mobs/EnderDragon.h index 43acdcd54..b756aab17 100644 --- a/src/Mobs/EnderDragon.h +++ b/src/Mobs/EnderDragon.h @@ -1,16 +1,13 @@ #pragma once -#include "AggressiveMonster.h" - - - - +#include "Monster.h" +#include "Behaviors/BehaviorDoNothing.h" class cEnderDragon : - public cAggressiveMonster + public cMonster { - typedef cAggressiveMonster super; + typedef cMonster super; public: cEnderDragon(void); @@ -18,6 +15,9 @@ public: CLASS_PROTODEF(cEnderDragon) virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override; + +private: + cBehaviorDoNothing m_BehaviorDoNothing; } ; |