forked from OpenForma/Formicae
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormicaeInfo.cs
More file actions
26 lines (20 loc) · 779 Bytes
/
Copy pathFormicaeInfo.cs
File metadata and controls
26 lines (20 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using Grasshopper;
using Grasshopper.Kernel;
using System;
using System.Drawing;
namespace Formicae
{
public class FormicaeInfo : GH_AssemblyInfo
{
public override string Name => "Formicae";
//Return a 24x24 pixel bitmap to represent this GHA library.
public override Bitmap Icon => null;
//Return a short string describing the purpose of this GHA library.
public override string Description => "";
public override Guid Id => new Guid("de566a89-9626-4ad1-8db2-4293ec8c30cc");
//Return a string identifying you or your company.
public override string AuthorName => "";
//Return a string representing your preferred contact details.
public override string AuthorContact => "";
}
}