17 lines
401 B
C++
17 lines
401 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
#include "UI/Portal/Signin/SignInOverlay.h"
|
|
|
|
#include "Components/Button.h"
|
|
#include "UI/API/GameSessions/JoinGame.h"
|
|
#include "UI/Portal/PortalManager.h"
|
|
|
|
void USignInOverlay::NativeConstruct()
|
|
{
|
|
Super::NativeConstruct();
|
|
|
|
check(PortalManagerClass);
|
|
PortalManager = NewObject<UPortalManager>(PortalManagerClass);
|
|
}
|