Files
FNGameProj/Source/FortniteGame/Private/CreativeMiniMapComponent.cpp
T
2024-06-07 01:17:09 +02:00

27 lines
788 B
C++

#include "CreativeMiniMapComponent.h"
#include "Net/UnrealNetwork.h"
void UCreativeMiniMapComponent::SetIndicatorTextOffset(const FVector2D& IndicatorTextOffset) {
}
void UCreativeMiniMapComponent::SetIndicatorTextColor(const FLinearColor& IndicatorTextColor) {
}
void UCreativeMiniMapComponent::SetIndicatorText(const FText& IndicatorText) {
}
void UCreativeMiniMapComponent::OnRep_IconData() {
}
void UCreativeMiniMapComponent::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(UCreativeMiniMapComponent, IndicatorTextProperties);
DOREPLIFETIME(UCreativeMiniMapComponent, IconData);
}
UCreativeMiniMapComponent::UCreativeMiniMapComponent() {
IconList = NULL;
}