Files
2026-04-22 15:51:07 +02: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;
}