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,14 +11,22 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class IDOverrideLibraryProperty {
[DNAFieldAttribute(0, "IDOverrideLibraryProperty", "*next", 48)]
public IDOverrideLibraryProperty ptr_next;
[DNAFieldAttribute(1, "IDOverrideLibraryProperty", "*prev", 48)]
public IDOverrideLibraryProperty ptr_prev;
[DNAFieldAttribute(2, "char", "*rna_path", 1)]
public char ptr_rna_path;
[DNAFieldAttribute(3, "ListBase", "operations", 16)]
public ListBase operations;
[DNAFieldAttribute(4, "short", "tag", 2)]
public short tag;
[DNAFieldAttribute(5, "char", "_pad[2]", 1)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(6, "int", "rna_prop_type", 4)]
public int rna_prop_type;
public IDOverrideLibraryProperty(IDOverrideLibraryProperty ptr_next, IDOverrideLibraryProperty ptr_prev, char ptr_rna_path, ListBase operations, short tag, char[] _pad, int rna_prop_type) {
this.ptr_next = ptr_next;