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

15 lines
349 B
C++
Executable file

#include "HitReactionComponent.h"
void UHitReactionComponent::PlayHitReaction() {
}
void UHitReactionComponent::OnDamageTaken(float Amount) {
}
UHitReactionComponent::UHitReactionComponent() {
this->FirstHitReactBlendIn = 0.10f;
this->OverrideHitReactBlendIn = 0.05f;
this->AllowHitReactions = true;
this->SkeletalMesh = NULL;
}