mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
14 lines
467 B
C++
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"));
|
|
}
|
|
|