19 lines
419 B
C++
19 lines
419 B
C++
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
#include "CommonPreLoadScreen.h"
|
||
|
#include "SCommonPreLoadingScreenWidget.h"
|
||
|
#include "Misc/App.h"
|
||
|
#include "CoreGlobals.h"
|
||
|
|
||
|
#define LOCTEXT_NAMESPACE "CommonPreLoadingScreen"
|
||
|
|
||
|
void FCommonPreLoadScreen::Init()
|
||
|
{
|
||
|
if (!GIsEditor && FApp::CanEverRender())
|
||
|
{
|
||
|
EngineLoadingWidget = SNew(SCommonPreLoadingScreenWidget);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#undef LOCTEXT_NAMESPACE
|