Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,18 +11,30 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class Base {
[DNAFieldAttribute(0, "Base", "*next", 48)]
public Base ptr_next;
[DNAFieldAttribute(1, "Base", "*prev", 48)]
public Base ptr_prev;
[DNAFieldAttribute(2, "Object", "*object", 1160)]
public Object ptr_object;
[DNAFieldAttribute(3, "Base", "*base_orig", 48)]
public Base ptr_base_orig;
[DNAFieldAttribute(4, "int", "lay", 4)]
public int lay;
[DNAFieldAttribute(5, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(6, "short", "flag_from_collection", 2)]
public short flag_from_collection;
[DNAFieldAttribute(7, "short", "flag_legacy", 2)]
public short flag_legacy;
[DNAFieldAttribute(8, "short", "local_view_bits", 2)]
public short local_view_bits;
[DNAFieldAttribute(9, "short", "local_collections_bits", 2)]
public short local_collections_bits;
[DNAFieldAttribute(10, "char", "_pad1[2]", 1)]
public char[] _pad1 = new System.Char[2];
public Base(Base ptr_next, Base ptr_prev, Object ptr_object, Base ptr_base_orig, int lay, short flag, short flag_from_collection, short flag_legacy, short local_view_bits, short local_collections_bits, char[] _pad1) {
this.ptr_next = ptr_next;