11 lines
288 B
C++
11 lines
288 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
#include "UI/API/GameSessions/JoinGame.h"
|
|
#include "Components/TextBlock.h"
|
|
|
|
void UJoinGame::SetStatusMessage(const FString& Message) const
|
|
{
|
|
TextBlock_StatusMessage->SetText(FText::FromString(Message));
|
|
}
|