mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
22 lines
635 B
C++
22 lines
635 B
C++
#include "FortHotfixBlockingVolume.h"
|
|
#include "Components/BoxComponent.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
void AFortHotfixBlockingVolume::OnRep_ReplicatedExtent() {
|
|
}
|
|
|
|
void AFortHotfixBlockingVolume::CopyToClipboard() {
|
|
}
|
|
|
|
void AFortHotfixBlockingVolume::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(AFortHotfixBlockingVolume, ReplicatedExtent);
|
|
}
|
|
|
|
AFortHotfixBlockingVolume::AFortHotfixBlockingVolume() {
|
|
BlockBoxComponent = CreateDefaultSubobject<UBoxComponent>(TEXT("BlockBox0"));
|
|
bNeededOnClient = true;
|
|
}
|
|
|