Files
UnrealEngine/Engine/Source/Developer/SessionFrontend/Private/Widgets/Browser/SSessionBrowserCommandBar.h
2025-05-18 13:04:45 +08:00

29 lines
529 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Widgets/DeclarativeSyntaxSupport.h"
#include "Widgets/SCompoundWidget.h"
/**
* Implements the session browser's command bar widget.
*/
class SSessionBrowserCommandBar
: public SCompoundWidget
{
public:
SLATE_BEGIN_ARGS(SSessionBrowserCommandBar) { }
SLATE_END_ARGS()
public:
/**
* Construct this widget
*
* @param InArgs The declaration data for this widget.
*/
void Construct( const FArguments& InArgs );
};