Files
UnrealEngine/Engine/Source/Editor/ContentBrowser/Private/ContentSources/Widgets/SLegacyContentSource.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

23 lines
362 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "SLegacyContentSource.h"
namespace UE::Editor::ContentBrowser
{
void SLegacyContentSource::Construct(const FArguments& InArgs)
{
ChildSlot
[
SNullWidget::NullWidget
];
}
void SLegacyContentSource::SetContent(const TSharedRef<SWidget>& InWidget)
{
ChildSlot
[
InWidget
];
}
}