From 775d2edb6b606c3beb5c732bacb7e8a72fdff207 Mon Sep 17 00:00:00 2001 From: LogicParrot Date: Sat, 2 Sep 2017 20:37:01 +0300 Subject: d --- src/Mobs/Blaze.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/Mobs/Blaze.h') 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; } ; -- cgit v1.2.3