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

14 lines
467 B
C++

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