29 lines
940 B
C
29 lines
940 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
/*=============================================================================
|
|
BuildPatchServices.h: BuildPatchServices module public header file.
|
|
=============================================================================*/
|
|
|
|
#pragma once
|
|
|
|
/* Boilerplate
|
|
*****************************************************************************/
|
|
|
|
#include "Misc/MonolithicHeaderBoilerplate.h"
|
|
MONOLITHIC_HEADER_BOILERPLATE()
|
|
|
|
/* Dependencies
|
|
*****************************************************************************/
|
|
#include "Core.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
/* Private includes
|
|
*****************************************************************************/
|
|
#include "BuildPatchVerify.h"
|
|
#include "BuildPatchSettings.h"
|
|
#include "BuildPatchState.h"
|
|
#include "Interfaces/IBuildInstaller.h"
|
|
#include "Interfaces/IBuildManifest.h"
|
|
#include "Interfaces/IBuildPatchServicesModule.h"
|
|
|