You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UETOOL-4974 #rb JeanLuc.Corenthin #preflight 620bb3b201253d2e19dc4a9a #lockdown jeanmichel.dignard #ROBOMERGE-AUTHOR: emil.kirichev #ROBOMERGE-SOURCE: CL 18995656 in //UE5/Release-5.0/... via CL 18995868 via CL 18995938 #ROBOMERGE-BOT: UE5 (Release-Engine-Test -> Main) (v917-18934589) [CL 19001136 by emil kirichev in ue5-main branch]
16 lines
341 B
C#
16 lines
341 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.Diagnostics;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
[SupportedPlatforms("Win64")]
|
|
public class DatasmithMax2023 : DatasmithMaxBase
|
|
{
|
|
public DatasmithMax2023(ReadOnlyTargetRules Target)
|
|
: base(Target)
|
|
{
|
|
}
|
|
public override string GetMaxVersion() { return "2023"; }
|
|
}
|
|
} |