Files
UnrealEngine/Engine/Source/Editor/ContentBrowser/Private/ContentSources/Widgets/SLegacyContentSource.h
2025-05-18 13:04:45 +08:00

27 lines
628 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "IContentBrowserSingleton.h"
#include "Widgets/SCompoundWidget.h"
class SAssetView;
namespace UE::Editor::ContentBrowser
{
// Widget to display the old asset based content browser
// Currently does not contain any logic and simply displays a pre-existing widget that is supplied by SContentBrowser
class SLegacyContentSource : public SCompoundWidget
{
public:
SLATE_BEGIN_ARGS(SLegacyContentSource) {}
SLATE_END_ARGS()
void Construct(const FArguments& InArgs);
void SetContent(const TSharedRef<SWidget>& InWidget);
private:
};
}