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 DatasmithMax2024 : DatasmithMaxBase
|
|
{
|
|
public DatasmithMax2024(ReadOnlyTargetRules Target)
|
|
: base(Target)
|
|
{
|
|
}
|
|
public override string GetMaxVersion() { return "2024"; }
|
|
}
|
|
} |