Added Generation Output
This commit is contained in:
18
BlendFile/DNA/MEdge.cs
Normal file
18
BlendFile/DNA/MEdge.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
||||
namespace BlendFile.DNA {
|
||||
|
||||
public struct MEdge {
|
||||
public int v1;
|
||||
public int v2;
|
||||
public char crease;
|
||||
public char bweight;
|
||||
public short flag;
|
||||
public MEdge(int v1, int v2, char crease, char bweight, short flag) {
|
||||
this.v1 = v1;
|
||||
this.v2 = v2;
|
||||
this.crease = crease;
|
||||
this.bweight = bweight;
|
||||
this.flag = flag;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user