Files
UnrealEngine/Engine/Source/Programs/Enterprise/Datasmith/DatasmithRhinoExporter/DatasmithRhino8/DatasmithRhino8.cs
2025-05-18 13:04:45 +08:00

19 lines
670 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace DatasmithRhino
{
///<summary>
/// <para>Every RhinoCommon .rhp assembly must have one and only one PlugIn-derived
/// class. DO NOT create instances of this class yourself. It is the
/// responsibility of Rhino to create an instance of this class.</para>
/// <para>To complete plug-in information, please also see all PlugInDescription
/// attributes in AssemblyInfo.cs (you might need to click "Project" ->
/// "Show All Files" to see it in the "Solution Explorer" window).</para>
///</summary>
public class DatasmithRhino8 : DatasmithRhinoPlugin
{
public DatasmithRhino8() : base()
{
}
}
}