You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
22 lines
454 B
C#
22 lines
454 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace UnrealBuildTool
|
|
{
|
|
internal class IOSPlatformSDK : ApplePlatformSDK
|
|
{
|
|
public IOSPlatformSDK(ILogger Logger)
|
|
: base(Logger)
|
|
{
|
|
}
|
|
|
|
protected override void GetValidSoftwareVersionRange(out string MinVersion, out string? MaxVersion)
|
|
{
|
|
// what is our min IOS version?
|
|
MinVersion = "12.0";
|
|
MaxVersion = null;
|
|
}
|
|
}
|
|
}
|