-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVariableOffsetInfo.cs
More file actions
29 lines (22 loc) · 997 Bytes
/
Copy pathVariableOffsetInfo.cs
File metadata and controls
29 lines (22 loc) · 997 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
27
28
29
using System;
using System.Drawing;
using Grasshopper;
using Grasshopper.Kernel;
namespace VariableOffset
{
public class VariableOffsetInfo : GH_AssemblyInfo
{
public override string Name => "VariableOffset";
//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("d4321fe5-5ccb-41c9-97dc-9f5c7f800dc5");
//Return a string identifying you or your company.
public override string AuthorName => "";
//Return a string representing your preferred contact details.
public override string AuthorContact => "";
//Return a string representing the version. This returns the same version as the assembly.
public override string AssemblyVersion => GetType().Assembly.GetName().Version.ToString();
}
}