You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
16 lines
266 B
C++
16 lines
266 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "Layout/Children.h"
|
|
|
|
#include "Widgets/SNullWidget.h"
|
|
|
|
|
|
PRAGMA_DISABLE_DEPRECATION_WARNINGS
|
|
FNoChildren::FNoChildren()
|
|
: FChildren(&SNullWidget::NullWidget.Get())
|
|
{
|
|
|
|
}
|
|
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|
|
|