Files
UnrealEngineUWP/Engine/Source/Editor/LevelEditor/Private/LevelEditorMenu.h
Matt Kuhlenschmidt c42837a0a9 Added a toolbar style to avoid so much duplication of styles related to toolbars in the editor
Fixed up all obvious use cases

#rb louise.rasmussen

[CL 13276109 by Matt Kuhlenschmidt in ue5-main branch]
2020-05-12 09:32:51 -04:00

30 lines
566 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Widgets/SWidget.h"
#include "Editor/LevelEditor/Private/SLevelEditor.h"
/**
* Level editor menu
*/
class FLevelEditorMenu
{
public:
static void RegisterLevelEditorMenus();
/**
* Static: Creates a widget for the level editor's menu
*
* @return New widget
*/
static TSharedRef< SWidget > MakeLevelEditorMenu( const TSharedPtr<FUICommandList>& CommandList, TSharedPtr<class SLevelEditor> LevelEditor );
private:
static void RegisterBuildMenu();
};