You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
15 lines
358 B
C++
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();
|
|
} |