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

17 lines
497 B
C++
Executable file

#include "CapsuleHitscanComponent.h"
void UCapsuleHitscanComponent::Server_RegisterHit_Implementation(const FMultiHitScanHits& hitResults) {
}
void UCapsuleHitscanComponent::All_ShowHit_Implementation(const FMultiHitScanHits& hitResults) {
}
UCapsuleHitscanComponent::UCapsuleHitscanComponent() {
this->DamageEnhancer = NULL;
this->range = 1000.00f;
this->Width = 300.00f;
this->ShowPhysMatImpact = true;
this->ShowPhysMatDecal = true;
this->PlayPhysMatSound = true;
}