Files
joe kirchoff 36d266e932 UnrealBuildTool: Automated code cleanup
#rnx
#preflight 6476799e947ff6973c225619

[CL 25693241 by joe kirchoff in ue5-main branch]
2023-05-30 18:38:07 -04:00

26 lines
567 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using Microsoft.Extensions.Logging;
namespace UnrealBuildTool
{
/// <summary>
/// Factory class for registering platforms at startup
/// </summary>
abstract class UEBuildPlatformFactory
{
/// <summary>
/// Gets the target platform for an individual factory
/// </summary>
public abstract UnrealTargetPlatform TargetPlatform
{
get;
}
/// <summary>
/// Register the platform with the UEBuildPlatform class
/// </summary>
public abstract void RegisterBuildPlatforms(ILogger Logger);
}
}