summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Behaviors/BehaviorAttackerMelee.h
blob: bfde615f8529a9a930b24aa00e53dd37a96a354c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "BehaviorAttacker.h"

/** Grants the mob that ability to approach a target and then melee attack it.
Use BehaviorAttackerMelee::SetTarget to attack. */
class cBehaviorAttackerMelee : public cBehaviorAttacker
{
public:
	bool DoStrikeTarget(int a_StrikeTickCnt) override;
};