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
361 B
C#
16 lines
361 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class DatasmithMax2023Target : DatasmithMaxBaseTarget
|
|
{
|
|
public DatasmithMax2023Target(TargetInfo Target) : base(Target)
|
|
{
|
|
LaunchModuleName = "DatasmithMax2023";
|
|
ExeBinariesSubFolder = @"3DSMax\2023";
|
|
|
|
AddCopyPostBuildStep(Target);
|
|
}
|
|
}
|