17 lines
397 B
C++
Executable file
17 lines
397 B
C++
Executable file
#include "MeleeAttackComponent.h"
|
|
|
|
UAnimMontage* UMeleeAttackComponent::SelectMontage_Implementation() const {
|
|
return NULL;
|
|
}
|
|
|
|
void UMeleeAttackComponent::OnPerformAttack(FName Name) {
|
|
}
|
|
|
|
void UMeleeAttackComponent::OnMontageEnded(UAnimMontage* Montage, bool interrupted) {
|
|
}
|
|
|
|
UMeleeAttackComponent::UMeleeAttackComponent() {
|
|
this->HitValidator = NULL;
|
|
this->CenterOnTarget = true;
|
|
}
|
|
|