Files
UnrealEngine/Engine/Source/Editor/ContentBrowser/Private/ContentSources/Widgets/SLegacyContentSource.cpp
2025-05-18 13:04:45 +08: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
];
}
}