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,15 +11,24 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class bNodeTreeInterfacePanel {
[DNAFieldAttribute(0, "bNodeTreeInterfaceItem", "item", 8)]
public bNodeTreeInterfaceItem item;
[DNAFieldAttribute(1, "char", "*name", 1)]
public char ptr_name;
[DNAFieldAttribute(2, "char", "*description", 1)]
public char ptr_description;
[DNAFieldAttribute(3, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(4, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(5, "bNodeTreeInterfaceItem", "**items_array", 8)]
public bNodeTreeInterfaceItem ptr_ptr_items_array;
[DNAFieldAttribute(6, "int", "items_num", 4)]
public int items_num;
[DNAFieldAttribute(7, "int", "identifier", 4)]
public int identifier;
public bNodeTreeInterfacePanel(bNodeTreeInterfaceItem item, char ptr_name, char ptr_description, int flag, char[] _pad, bNodeTreeInterfaceItem ptr_ptr_items_array, int items_num, int identifier) {
this.item = item;