mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
22 lines
506 B
C++
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;
|
|
}
|
|
|