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

29 lines
823 B
C++
Executable file

#include "ProjectileAttackBaseComponent.h"
bool UProjectileAttackBaseComponent::TriggerMontage(AActor* Target) {
return false;
}
UAnimMontage* UProjectileAttackBaseComponent::SelectMontage_Implementation() const {
return NULL;
}
void UProjectileAttackBaseComponent::OnPerformAttack() {
}
void UProjectileAttackBaseComponent::OnMontageEnded(UAnimMontage* Montage, bool interrupted) {
}
void UProjectileAttackBaseComponent::MulticastProjectileFired_Implementation() {
}
void UProjectileAttackBaseComponent::CancelMontage() {
}
UProjectileAttackBaseComponent::UProjectileAttackBaseComponent() {
this->SocketName = TEXT("RangedAttack");
this->RotationHandling = EProjectileAttackRotationType::NoTarget_ActorForward;
this->FinalValidationCheck = NULL;
this->ProjectilesIgnoreEachOther = false;
}