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

22 lines
506 B
C++

#include "FortCreativePlayOptions.h"
bool UFortCreativePlayOptions::ShouldShowImportPlatformFriendsOption() {
return false;
}
void UFortCreativePlayOptions::SetMatchmakingWidget(UFortAthenaMatchmakingWidget* InWidget) {
}
void UFortCreativePlayOptions::ImportPlatformFriends() {
}
void UFortCreativePlayOptions::HandleCancelClicked() {
}
UFortCreativePlayOptions::UFortCreativePlayOptions() {
this->CreativeOptionsServers = NULL;
this->PlayButton = NULL;
this->CancelButton = NULL;
}