blob: 49a51ff71c03c31149d84c78e980a3709a5fda4a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "BehaviorAttacker.h"
/** Makes the mob fight back any other mob that damages it. Mob should have BehaviorAttacker to work.
This behavior does not make sense in combination with BehaviorCoward. */
class cBehaviorAttackerMelee : cBehaviorAttacker
{
public:
bool StrikeTarget(int a_StrikeTickCnt) override;
};
|