using FeMM.Grasshopper.DataTypes.FeMM;
using Grasshopper.Kernel;
using System;
using System.Runtime.Versioning;

namespace FeMM.Grasshopper.Components.Elements
{
#if NETCOREAPP
    [SupportedOSPlatform("windows")]
#endif
    public class BeamComponentV1_OBSOLETE : BeamComponentBase
    {
        public BeamComponentV1_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("a5b774a8-51ec-4c79-bfe7-e19558f444a9");

        protected override void RegisterAdditionalInputs(GH_InputParamManager pManager)
        {
        }

        protected override void AddAlignmentProperties(IGH_DataAccess DA, GH_FunctionDefinition bp)
        {
        }
    }
}
303 files24 directories