Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

26 lines
504 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using EpicGames.Core;
using Microsoft.Extensions.Logging;
namespace UnrealBuildTool.Tests.TestUtilities
{
internal class TestSDK : UEBuildPlatformSDK
{
public TestSDK(ILogger inLogger) : base(inLogger)
{
}
public override bool TryConvertVersionToInt(string? stringValue, out ulong outValue, string? hint = null)
{
outValue = 1;
return true;
}
protected override string? GetInstalledSDKVersion()
{
return "1.0.0";
}
}
}