Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,31 +15,31 @@ namespace BlendFile.DNA {
[DNAClassAttribute(162, "Collection_Runtime", 64)]
public class Collection_Runtime {
[DNAFieldAttribute(0, "ListBase", "object_cache", "ListBase", 16, false, 0)]
[DNAFieldAttribute(16, "ListBase", 0, "object_cache", "ListBase", false, 0)]
public ListBase object_cache;
[DNAFieldAttribute(1, "ListBase", "object_cache_instanced", "ListBase", 16, false, 16)]
[DNAFieldAttribute(16, "ListBase", 1, "object_cache_instanced", "ListBase", false, 16)]
public ListBase object_cache_instanced;
[DNAFieldAttribute(2, "ListBase", "parents", "ListBase", 16, false, 32)]
[DNAFieldAttribute(16, "ListBase", 2, "parents", "ListBase", false, 32)]
public ListBase parents;
[DNAFieldAttribute(3, "GHash", "*gobject_hash", "GHash", 8, true, 48)]
public GHash ptr_gobject_hash;
[DNAFieldAttribute(4, "uchar", "tag", "uchar", 1, false, 56)]
[DNAFieldAttribute(8, "GHash", 3, "*gobject_hash", "GHash", true, 48)]
public GHash gobject_hash;
[DNAFieldAttribute(1, "uchar", 4, "tag", "uchar", false, 56)]
public byte tag;
[DNAFieldAttribute(5, "char", "_pad0[7]", "System.Char[]", 7, false, 57)]
[DNAFieldAttribute(7, "char", 5, "_pad0[7]", "System.Char[]", false, 57)]
public char[] _pad0 = new System.Char[7];
public Collection_Runtime() {
this.object_cache = default;
this.object_cache_instanced = default;
this.parents = default;
this.ptr_gobject_hash = default;
this.gobject_hash = default;
this.tag = default;
this._pad0 = default;
}
public Collection_Runtime(ListBase object_cache, ListBase object_cache_instanced, ListBase parents, GHash ptr_gobject_hash, byte tag, char[] _pad0) {
public Collection_Runtime(ListBase object_cache, ListBase object_cache_instanced, ListBase parents, GHash gobject_hash, byte tag, char[] _pad0) {
this.object_cache = object_cache;
this.object_cache_instanced = object_cache_instanced;
this.parents = parents;
this.ptr_gobject_hash = ptr_gobject_hash;
this.gobject_hash = gobject_hash;
this.tag = tag;
this._pad0 = _pad0;
}