Files
FNGameProj/Source/FortniteGame/Private/FortUIInfoComponent.cpp
T
2024-03-03 23:44:39 +01:00

15 lines
458 B
C++

#include "FortUIInfoComponent.h"
#include "Net/UnrealNetwork.h"
void UFortUIInfoComponent::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(UFortUIInfoComponent, LabelText);
DOREPLIFETIME(UFortUIInfoComponent, DescriptionText);
DOREPLIFETIME(UFortUIInfoComponent, TextureSoftPointer);
}
UFortUIInfoComponent::UFortUIInfoComponent() {
}