You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #preflight 6476799e947ff6973c225619 [CL 25693241 by joe kirchoff in ue5-main branch]
26 lines
567 B
C#
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);
|
|
}
|
|
}
|