21 lines
653 B
C#
21 lines
653 B
C#
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
|
namespace BlendFile.DNA {
|
|
|
|
public class ScrVert {
|
|
public ScrVert ptr_next;
|
|
public ScrVert ptr_prev;
|
|
public ScrVert ptr_newv;
|
|
public vec2s vec;
|
|
public short flag;
|
|
public short editflag;
|
|
public ScrVert(ScrVert ptr_next, ScrVert ptr_prev, ScrVert ptr_newv, vec2s vec, short flag, short editflag) {
|
|
this.ptr_next = ptr_next;
|
|
this.ptr_prev = ptr_prev;
|
|
this.ptr_newv = ptr_newv;
|
|
this.vec = vec;
|
|
this.flag = flag;
|
|
this.editflag = editflag;
|
|
}
|
|
}
|
|
}
|