summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Behaviors/BehaviorAttackerMelee.h
blob: b079c94fc3adb9bdfd48bc0dc7af50416cfb14ff (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 : public cBehaviorAttacker
{
public:
	bool StrikeTarget(int a_StrikeTickCnt) override;
};