You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-174869 #rb zack.neyland [FYI] josh.adams, jack.porter #preflight 63e138f08374ef68df9c7376 #lockdown rolando.caloca [CL 24040437 by adam kinge in ue5-main branch]
21 lines
475 B
C#
21 lines
475 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using EpicGames.Core;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace UnrealBuildTool
|
|
{
|
|
internal partial class MacPlatformSDK : ApplePlatformSDK
|
|
{
|
|
public MacPlatformSDK(ILogger Logger)
|
|
: base(Logger)
|
|
{
|
|
}
|
|
|
|
protected override void GetValidSoftwareVersionRange(out string MinVersion, out string? MaxVersion)
|
|
{
|
|
MinVersion = "12.5.0"; // macOS Monterey 12.5 (Released 2022/07/22)
|
|
MaxVersion = null;
|
|
}
|
|
}
|
|
} |