diff options
Diffstat (limited to 'src/Mobs/Blaze.h')
-rw-r--r-- | src/Mobs/Blaze.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Mobs/Blaze.h b/src/Mobs/Blaze.h index 1fb165a37..aad6b4af6 100644 --- a/src/Mobs/Blaze.h +++ b/src/Mobs/Blaze.h @@ -1,6 +1,9 @@ #pragma once #include "Monster.h" +#include "Behaviors/BehaviorAttackerRanged.h" +#include "Behaviors/BehaviorDoNothing.h" +#include "Behaviors/BehaviorAggressive.h" class cBlaze : public cMonster @@ -13,4 +16,12 @@ public: CLASS_PROTODEF(cBlaze) virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override; + +private: + // tick behaviors + cBehaviorAttackerRanged m_BehaviorAttackerRanged; + cBehaviorDoNothing m_BehaviorDoNothing; + + // other behaviors + cBehaviorAggressive m_BehaviorAggressive; } ; |