summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Behaviors/BehaviorAttackerMelee.cpp
blob: 337d8d216262caa64c4b7a78a6a2abac932f6084 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules

#include "BehaviorAttackerMelee.h"
#include "../Monster.h"
#include "../../Entities/Pawn.h"
#include "../../BlockID.h"

bool cBehaviorAttackerMelee::StrikeTarget(int a_StrikeTickCnt)
{
	UNUSED(a_StrikeTickCnt);
	GetTarget()->TakeDamage(dtMobAttack, m_Parent, m_AttackDamage, 0);
	return true; // Finish the strike. It only takes 1 tick.
}