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

18 lines
546 B
C++
Executable file

#include "FrozenPawnImpactComponent.h"
void UFrozenPawnImpactComponent::TriggerFrozenRagdoll() {
}
void UFrozenPawnImpactComponent::OnFrozen(bool frozen) {
}
void UFrozenPawnImpactComponent::OnFreezeImpact(UPrimitiveComponent* HitComponent, AActor* OtherActor, UPrimitiveComponent* OtherComp, FVector NormalImpulse, const FHitResult& Hit) {
}
UFrozenPawnImpactComponent::UFrozenPawnImpactComponent() {
this->FrozenMaterial = NULL;
this->FrozenAsset = NULL;
this->FrozenDeathSound = NULL;
this->FrozenDeathparticles = NULL;
}