summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Behaviors/BehaviorChaser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/Behaviors/BehaviorChaser.h')
-rw-r--r--src/Mobs/Behaviors/BehaviorChaser.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Mobs/Behaviors/BehaviorChaser.h b/src/Mobs/Behaviors/BehaviorChaser.h
index 75f3fc121..b71d503b3 100644
--- a/src/Mobs/Behaviors/BehaviorChaser.h
+++ b/src/Mobs/Behaviors/BehaviorChaser.h
@@ -24,6 +24,7 @@ public:
void Tick() override;
void Destroyed() override;
void PostTick() override;
+ void DoTakeDamage(TakeDamageInfo & a_TDI) override;
// Our host monster will call these once it loads its config file
void SetAttackRate(float a_AttackRate);
@@ -35,11 +36,9 @@ public:
/** Sets the target. */
void SetTarget(cPawn * a_Target);
-
- virtual ~cBehaviorChaser();
protected:
void ApproachTarget();
- // virtual void ApproachTarget() = 0;
+ // virtual void ApproachTarget() = 0; //mobTodo
private:
/** Our parent */