Files
FNGameProj/Source/FortniteGame/Private/FortHotfixBehaviorVolume.cpp
T
2024-06-07 01:17:09 +02:00

17 lines
659 B
C++

#include "FortHotfixBehaviorVolume.h"
#include "Components/BoxComponent.h"
void AFortHotfixBehaviorVolume::OnOverlapEnd(UPrimitiveComponent* OverlappedComponent, AActor* OtherActor, UPrimitiveComponent* OtherComp, int32 OtherBodyIndex) {
}
void AFortHotfixBehaviorVolume::OnOverlapBegin(UPrimitiveComponent* OverlappedComponent, AActor* OtherActor, UPrimitiveComponent* OtherComp, int32 OtherBodyIndex, bool bFromSweep, const FHitResult& SweepResult) {
}
void AFortHotfixBehaviorVolume::CopyToClipboard() {
}
AFortHotfixBehaviorVolume::AFortHotfixBehaviorVolume() {
TriggerBoxComponent = CreateDefaultSubobject<UBoxComponent>(TEXT("TriggerBox0"));
}