Regenerated codefiles
This commit is contained in:
@@ -15,29 +15,29 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(73, "SpaceLink", 40)]
|
||||
public class SpaceLink {
|
||||
[DNAFieldAttribute(0, "SpaceLink", "*next", "SpaceLink", 8, true, 0)]
|
||||
public SpaceLink ptr_next;
|
||||
[DNAFieldAttribute(1, "SpaceLink", "*prev", "SpaceLink", 8, true, 8)]
|
||||
public SpaceLink ptr_prev;
|
||||
[DNAFieldAttribute(2, "ListBase", "regionbase", "ListBase", 16, false, 16)]
|
||||
[DNAFieldAttribute(8, "SpaceLink", 0, "*next", "SpaceLink", true, 0)]
|
||||
public SpaceLink next;
|
||||
[DNAFieldAttribute(8, "SpaceLink", 1, "*prev", "SpaceLink", true, 8)]
|
||||
public SpaceLink prev;
|
||||
[DNAFieldAttribute(16, "ListBase", 2, "regionbase", "ListBase", false, 16)]
|
||||
public ListBase regionbase;
|
||||
[DNAFieldAttribute(3, "char", "spacetype", "char", 1, false, 32)]
|
||||
[DNAFieldAttribute(1, "char", 3, "spacetype", "char", false, 32)]
|
||||
public char spacetype;
|
||||
[DNAFieldAttribute(4, "char", "link_flag", "char", 1, false, 33)]
|
||||
[DNAFieldAttribute(1, "char", 4, "link_flag", "char", false, 33)]
|
||||
public char link_flag;
|
||||
[DNAFieldAttribute(5, "char", "_pad0[6]", "System.Char[]", 6, false, 34)]
|
||||
[DNAFieldAttribute(6, "char", 5, "_pad0[6]", "System.Char[]", false, 34)]
|
||||
public char[] _pad0 = new System.Char[6];
|
||||
public SpaceLink() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.regionbase = default;
|
||||
this.spacetype = default;
|
||||
this.link_flag = default;
|
||||
this._pad0 = default;
|
||||
}
|
||||
public SpaceLink(SpaceLink ptr_next, SpaceLink ptr_prev, ListBase regionbase, char spacetype, char link_flag, char[] _pad0) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
public SpaceLink(SpaceLink next, SpaceLink prev, ListBase regionbase, char spacetype, char link_flag, char[] _pad0) {
|
||||
this.next = next;
|
||||
this.prev = prev;
|
||||
this.regionbase = regionbase;
|
||||
this.spacetype = spacetype;
|
||||
this.link_flag = link_flag;
|
||||
|
||||
Reference in New Issue
Block a user