48 lines
1.6 KiB
C#
48 lines
1.6 KiB
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 System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(845, "ScrVert")]
|
|
public class ScrVert {
|
|
[DNAFieldAttribute(0, "ScrVert", "*next", "ScrVert", 32)]
|
|
public ScrVert ptr_next;
|
|
[DNAFieldAttribute(1, "ScrVert", "*prev", "ScrVert", 32)]
|
|
public ScrVert ptr_prev;
|
|
[DNAFieldAttribute(2, "ScrVert", "*newv", "ScrVert", 32)]
|
|
public ScrVert ptr_newv;
|
|
[DNAFieldAttribute(3, "vec2s", "vec", "vec2s", 4)]
|
|
public vec2s vec;
|
|
[DNAFieldAttribute(4, "short", "flag", "short", 2)]
|
|
public short flag;
|
|
[DNAFieldAttribute(5, "short", "editflag", "short", 2)]
|
|
public short editflag;
|
|
public ScrVert() {
|
|
this.ptr_next = default;
|
|
this.ptr_prev = default;
|
|
this.ptr_newv = default;
|
|
this.vec = default;
|
|
this.flag = default;
|
|
this.editflag = default;
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
}
|