67c7ddbf0a
* updates button labels and panel text * adds rhino toolbar * removes unnecessary images * feat: Add rui to Rhino projects with AssemblyName as filename --------- Co-authored-by: Alan Rynne <alan@speckle.systems>
18 lines
503 B
C#
18 lines
503 B
C#
using Speckle.Connectors.CSiShared;
|
|
|
|
namespace Speckle.Connectors.ETABSShared;
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "<Pending>")]
|
|
public abstract class EtabsPluginBase : CSiPluginBase
|
|
{
|
|
public override int Info(ref string text)
|
|
{
|
|
text = "Next Gen Speckle Connector for ETABS";
|
|
return 0;
|
|
}
|
|
|
|
protected override SpeckleFormBase CreateForm() => CreateEtabsForm();
|
|
|
|
protected abstract EtabsSpeckleFormBase CreateEtabsForm();
|
|
}
|