summaryrefslogtreecommitdiffstats
path: root/src/Mobs/EnderDragon.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/EnderDragon.h')
-rw-r--r--src/Mobs/EnderDragon.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Mobs/EnderDragon.h b/src/Mobs/EnderDragon.h
index 0528af77c..b756aab17 100644
--- a/src/Mobs/EnderDragon.h
+++ b/src/Mobs/EnderDragon.h
@@ -2,6 +2,7 @@
#pragma once
#include "Monster.h"
+#include "Behaviors/BehaviorDoNothing.h"
class cEnderDragon :
public cMonster
@@ -14,6 +15,9 @@ public:
CLASS_PROTODEF(cEnderDragon)
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
+
+private:
+ cBehaviorDoNothing m_BehaviorDoNothing;
} ;