mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
25 lines
698 B
C++
25 lines
698 B
C++
#include "FortToyContext.h"
|
|
|
|
void UFortToyContext::PrintToMessageFeed(const FText& Message) {
|
|
}
|
|
|
|
FText UFortToyContext::PickToyOwnerNameStyle(AFortPlayerState* Instigator) {
|
|
return FText::GetEmpty();
|
|
}
|
|
|
|
FString UFortToyContext::GetFilteredPlayerName(AFortPlayerState* Instigator) {
|
|
return TEXT("");
|
|
}
|
|
|
|
FText UFortToyContext::FormatPlayerNameForDisplay(AFortPlayerState* Subject, EMessageFeedSubject SubjectType) {
|
|
return FText::GetEmpty();
|
|
}
|
|
|
|
bool UFortToyContext::ConditionalPrintToMessageFeed(AFortPlayerState* Instigator, FVector MessageLocation, EMessageFeedRelationshipFilter RelationshipFilter, const FText& Message) {
|
|
return false;
|
|
}
|
|
|
|
UFortToyContext::UFortToyContext() {
|
|
}
|
|
|