diff options
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Giant.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Mobs/Giant.h b/src/Mobs/Giant.h index f1734437b..9cd7c2865 100644 --- a/src/Mobs/Giant.h +++ b/src/Mobs/Giant.h @@ -2,7 +2,7 @@ #pragma once #include "Monster.h" - +#include "Behaviors/BehaviorDoNothing.h" @@ -18,6 +18,9 @@ public: CLASS_PROTODEF(cGiant) virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override; + +private: + cBehaviorDoNothing m_BehaviorDoNothing; } ; |