Files
UnrealEngineUWP/Engine/Source/Editor/BlueprintGraph/Private/BlueprintGraphModule.cpp
ben hoffman a80211bd9c Blueprints: Add a Shutdown method to the TypePromotion singleton and call it when the BP module gets shut down
#jira none
#rb trivial
#rnx

[CL 14558657 by ben hoffman in ue5-main branch]
2020-10-23 13:33:05 -04:00

15 lines
358 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "BlueprintGraphModule.h"
#include "EdGraphSchema_K2.h"
#include "BlueprintTypePromotion.h"
#include "Modules/ModuleManager.h"
IMPLEMENT_MODULE( FBlueprintGraphModule, BlueprintGraph );
void FBlueprintGraphModule::ShutdownModule()
{
UEdGraphSchema_K2::Shutdown();
FTypePromotion::Shutdown();
}