Files
BlenderSharp/BlendFile/DNA/ScrVert.cs
2025-01-22 17:40:14 +01:00

33 lines
990 B
C#

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