Files
UnrealEngineUWP/Engine/Source/Programs/UnrealBuildTool/Configuration/UEBuildDeploy.cs
Ben Marsh 68f5abeb09 UBT: Convert UnrealBuildTool to use nullable references.
#rb none
#rnx

[CL 14960546 by Ben Marsh in ue5-main branch]
2020-12-20 18:47:42 -04:00

28 lines
643 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.IO;
namespace UnrealBuildTool
{
/// <summary>
/// Base class to handle deploy of a target for a given platform
/// </summary>
abstract class UEBuildDeploy
{
/// <summary>
/// Prepare the target for deployment
/// </summary>
/// <param name="Receipt">Receipt for the target being deployed</param>
/// <returns>True if successful, false if not</returns>
public virtual bool PrepTargetForDeployment(TargetReceipt Receipt)
{
return true;
}
}
}