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