You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
28 lines
561 B
C++
28 lines
561 B
C++
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
|
|
/**
|
|
* Interface for launcher tools modules.
|
|
*/
|
|
class ILauncherAutomatedServiceModule
|
|
: public IModuleInterface
|
|
{
|
|
public:
|
|
|
|
/**
|
|
* Creates a service for running the launcher as an automated process.
|
|
*
|
|
* @return The automation service provider which runs the launcher commands automatically.
|
|
*/
|
|
virtual ILauncherAutomatedServiceProviderPtr CreateAutomatedServiceProvider() = 0;
|
|
|
|
public:
|
|
|
|
/**
|
|
* Virtual destructor.
|
|
*/
|
|
virtual ~ILauncherAutomatedServiceModule( ) { }
|
|
};
|