Files
kerim borchaev 4398537c9d [3ds Max Exporter] 3ds Max 2025 support
#jira UE-206378
#rb JeanLuc.Corenthin

[CL 32819790 by kerim borchaev in ue5-main branch]
2024-04-09 01:09:02 -04:00

16 lines
341 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.Diagnostics;
namespace UnrealBuildTool.Rules
{
[SupportedPlatforms("Win64")]
public class DatasmithMax2025 : DatasmithMaxBase
{
public DatasmithMax2025(ReadOnlyTargetRules Target)
: base(Target)
{
}
public override string GetMaxVersion() { return "2025"; }
}
}