Files
BlenderSharp/BlendFile/DNA/MEdge.cs
2025-01-22 02:23:29 +01:00

19 lines
501 B
C#

// 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;
}
}
}