// Copyright Epic Games, Inc. All Rights Reserved. #include "ULevelAssetEditor.h" #include "EditorModeManager.h" #include "LevelAssetEditorToolkit.h" #include "Engine/Level.h" void ULevelAssetEditor::GetObjectsToEdit(TArray& InObjectsToEdit) { InObjectsToEdit.Add(NewObject(this, NAME_None, RF_Transient)); } TSharedPtr ULevelAssetEditor::CreateToolkit() { return MakeShared(this); }