mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
15 lines
458 B
C++
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() {
|
|
}
|
|
|