//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; 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; } } }