Files
UnrealEngineUWP/Engine/Source/Runtime/LauncherAutomatedService/Private/LauncherAutomatedServiceModule.cpp
2014-03-14 14:13:41 -04:00

16 lines
624 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
/*=============================================================================
ILauncherServicesModule.h: Declares the ILauncherServicesModule interface.
=============================================================================*/
#include "LauncherAutomatedServicePrivatePCH.h"
#include "ModuleManager.h"
IMPLEMENT_MODULE(FLauncherAutomatedServiceModule, LauncherAutomatedService);
ILauncherAutomatedServiceProviderPtr FLauncherAutomatedServiceModule::CreateAutomatedServiceProvider()
{
return MakeShareable(new FLauncherAutomatedServiceProvider());
}