// Copyright 1998-2017 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 { /// /// Base class to handle deploy of a target for a given platform /// abstract class UEBuildDeploy { /// /// Prepare the target for deployment /// /// The target for deployment /// bool true if successful, false if not public virtual bool PrepTargetForDeployment(UEBuildDeployTarget InTarget) { return true; } } }