Files
FNGameProj/Source/FortniteGame/Private/FortStormShieldComponent.cpp
2024-01-21 00:41:14 +01:00

17 lines
417 B
C++

#include "FortStormShieldComponent.h"
void UFortStormShieldComponent::StormShieldDestroyed(AActor* DestroyedActor) {
}
void UFortStormShieldComponent::StormShieldCreated(AFortMissionStormShield* Shield) {
}
void UFortStormShieldComponent::OwnerDestroyed(AActor* InOwner) {
}
UFortStormShieldComponent::UFortStormShieldComponent() {
this->bDisabled = false;
this->DistanceFromEdgeOfStormShield = 0.30f;
}