Files
FNGameProj/Source/FortniteUI/Private/AthenaTravelLogFormatting.cpp
2024-01-21 00:41:14 +01:00

18 lines
455 B
C++

#include "AthenaTravelLogFormatting.h"
bool UAthenaTravelLogFormatting::ShouldDisplayText(const FAthenaTravelLogEntry& Entry) {
return false;
}
bool UAthenaTravelLogFormatting::IsTravelLogTextDisplayEnabled() {
return false;
}
FText UAthenaTravelLogFormatting::FormatTravelLogEntry(UObject* WorldContextObject, const FAthenaTravelLogEntry& Entry) {
return FText::GetEmpty();
}
UAthenaTravelLogFormatting::UAthenaTravelLogFormatting() {
}