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
361 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class DatasmithMax2025Target : DatasmithMaxBaseTarget
{
public DatasmithMax2025Target(TargetInfo Target) : base(Target)
{
LaunchModuleName = "DatasmithMax2025";
ExeBinariesSubFolder = @"3DSMax\2025";
AddCopyPostBuildStep(Target);
}
}