21 lines
347 B
C#
21 lines
347 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.IO;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
[SupportedPlatforms("Win64", "Mac")]
|
|
public class DatasmithRhino7 : DatasmithRhinoBase
|
|
{
|
|
public DatasmithRhino7(ReadOnlyTargetRules Target)
|
|
: base(Target)
|
|
{
|
|
}
|
|
|
|
public override string GetRhinoVersion()
|
|
{
|
|
return "7";
|
|
}
|
|
}
|
|
}
|