DRG-Femboy-Voice/Source/FSD/Private/MeleeAttackComponent.cpp
2025-04-15 12:39:31 -07:00

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;
}