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

16 lines
341 B
C#

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