Regenerated codefiles
This commit is contained in:
@@ -15,45 +15,45 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(862, "bToolRef", 168)]
|
||||
public class bToolRef {
|
||||
[DNAFieldAttribute(0, "bToolRef", "*next", "bToolRef", 8, true, 0)]
|
||||
public bToolRef ptr_next;
|
||||
[DNAFieldAttribute(1, "bToolRef", "*prev", "bToolRef", 8, true, 8)]
|
||||
public bToolRef ptr_prev;
|
||||
[DNAFieldAttribute(2, "char", "idname[64]", "System.Char[]", 64, false, 16)]
|
||||
[DNAFieldAttribute(8, "bToolRef", 0, "*next", "bToolRef", true, 0)]
|
||||
public bToolRef next;
|
||||
[DNAFieldAttribute(8, "bToolRef", 1, "*prev", "bToolRef", true, 8)]
|
||||
public bToolRef prev;
|
||||
[DNAFieldAttribute(64, "char", 2, "idname[64]", "System.Char[]", false, 16)]
|
||||
public char[] idname = new System.Char[64];
|
||||
[DNAFieldAttribute(3, "char", "idname_fallback[64]", "System.Char[]", 64, false, 80)]
|
||||
[DNAFieldAttribute(64, "char", 3, "idname_fallback[64]", "System.Char[]", false, 80)]
|
||||
public char[] idname_fallback = new System.Char[64];
|
||||
[DNAFieldAttribute(4, "short", "tag", "short", 2, false, 144)]
|
||||
[DNAFieldAttribute(2, "short", 4, "tag", "short", false, 144)]
|
||||
public short tag;
|
||||
[DNAFieldAttribute(5, "short", "space_type", "short", 2, false, 146)]
|
||||
[DNAFieldAttribute(2, "short", 5, "space_type", "short", false, 146)]
|
||||
public short space_type;
|
||||
[DNAFieldAttribute(6, "int", "mode", "int", 4, false, 148)]
|
||||
[DNAFieldAttribute(4, "int", 6, "mode", "int", false, 148)]
|
||||
public int mode;
|
||||
[DNAFieldAttribute(7, "IDProperty", "*properties", "IDProperty", 8, true, 152)]
|
||||
public IDProperty ptr_properties;
|
||||
[DNAFieldAttribute(8, "bToolRef_Runtime", "*runtime", "bToolRef_Runtime", 8, true, 160)]
|
||||
public bToolRef_Runtime ptr_runtime;
|
||||
[DNAFieldAttribute(8, "IDProperty", 7, "*properties", "IDProperty", true, 152)]
|
||||
public IDProperty properties;
|
||||
[DNAFieldAttribute(8, "bToolRef_Runtime", 8, "*runtime", "bToolRef_Runtime", true, 160)]
|
||||
public bToolRef_Runtime runtime;
|
||||
public bToolRef() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.idname = default;
|
||||
this.idname_fallback = default;
|
||||
this.tag = default;
|
||||
this.space_type = default;
|
||||
this.mode = default;
|
||||
this.ptr_properties = default;
|
||||
this.ptr_runtime = default;
|
||||
this.properties = default;
|
||||
this.runtime = default;
|
||||
}
|
||||
public bToolRef(bToolRef ptr_next, bToolRef ptr_prev, char[] idname, char[] idname_fallback, short tag, short space_type, int mode, IDProperty ptr_properties, bToolRef_Runtime ptr_runtime) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
public bToolRef(bToolRef next, bToolRef prev, char[] idname, char[] idname_fallback, short tag, short space_type, int mode, IDProperty properties, bToolRef_Runtime runtime) {
|
||||
this.next = next;
|
||||
this.prev = prev;
|
||||
this.idname = idname;
|
||||
this.idname_fallback = idname_fallback;
|
||||
this.tag = tag;
|
||||
this.space_type = space_type;
|
||||
this.mode = mode;
|
||||
this.ptr_properties = ptr_properties;
|
||||
this.ptr_runtime = ptr_runtime;
|
||||
this.properties = properties;
|
||||
this.runtime = runtime;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user