11 lines
304 B
C++
11 lines
304 B
C++
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#include "Subsystems/EditorSubsystemBlueprintLibrary.h"
|
||
|
|
|
||
|
|
#include "Editor.h"
|
||
|
|
|
||
|
|
/*static*/ UEditorSubsystem* UEditorSubsystemBlueprintLibrary::GetEditorSubsystem(TSubclassOf<UEditorSubsystem> Class)
|
||
|
|
{
|
||
|
|
return GEditor->GetEditorSubsystemBase(Class);
|
||
|
|
}
|