mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
18 lines
455 B
C++
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() {
|
|
}
|
|
|