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

15 lines
418 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class MDeformVert {
public MDeformWeight ptr_dw;
public int totweight;
public int flag;
public MDeformVert(MDeformWeight ptr_dw, int totweight, int flag) {
this.ptr_dw = ptr_dw;
this.totweight = totweight;
this.flag = flag;
}
}
}