17 lines
497 B
C++
Executable file
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;
|
|
}
|
|
|