using Grasshopper.Kernel;
using System;
using System.Collections.Generic;
using System.Runtime.Versioning;
namespace FeMM.Grasshopper.Components.MeCheck2
{
#if NETCOREAPP
[SupportedOSPlatform("windows")]
#endif
public class PrintCheckImageMeCheckResultComponentV1_OBSOLETE : PrintCheckImageMeCheckResultComponentBase
{
public PrintCheckImageMeCheckResultComponentV1_OBSOLETE()
: base()
{
}
public override GH_Exposure Exposure => GH_Exposure.hidden;
/// <summary>
/// Gets the unique ID for this component. Do not change this ID after release.
/// </summary>
public override Guid ComponentGuid => new("2a87525a-fce8-45ba-8a68-126dd59f644d");
protected override void GetInputMarks(IGH_DataAccess DA, ref int nnn, ref bool showMarks, List<double> customMarks)
{
}
protected override void RegisterInputMarks(GH_InputParamManager pManager)
{
}
}
}