Files
UnrealEngineUWP/Engine/Plugins/Web/WebAPI/Source/WebAPIBlueprintGraph/Private/WebAPIBlueprintGraphModule.cpp
George Rolfe b14533c5bd WebAPI
#jira UETOOL-4463
#preflight 622fa2d4ce577e3ab2d5d0cf
#rb simon.therriault

[CL 19379132 by George Rolfe in ue5-main branch]
2022-03-14 17:37:36 -04:00

20 lines
350 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "WebAPIBlueprintGraphModule.h"
#define LOCTEXT_NAMESPACE "WebAPIBlueprintGraph"
void FWebAPIBlueprintGraphModule::StartupModule()
{
}
void FWebAPIBlueprintGraphModule::ShutdownModule()
{
}
#undef LOCTEXT_NAMESPACE
IMPLEMENT_MODULE(FWebAPIBlueprintGraphModule, WebAPIBlueprintGraph)