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

@@ -13,41 +13,37 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(566, "bNodeTreeInterfacePanel", 48)]
[DNAClassAttribute(566, "bNodeTreeInterfacePanel", 40)]
public class bNodeTreeInterfacePanel {
[DNAFieldAttribute(0, "bNodeTreeInterfaceItem", "item", "bNodeTreeInterfaceItem", 8, false, 0)]
[DNAFieldAttribute(8, "bNodeTreeInterfaceItem", 0, "item", "bNodeTreeInterfaceItem", false, 0)]
public bNodeTreeInterfaceItem item;
[DNAFieldAttribute(1, "char", "*name", "char", 8, true, 8)]
public char ptr_name;
[DNAFieldAttribute(2, "char", "*description", "char", 8, true, 16)]
public char ptr_description;
[DNAFieldAttribute(3, "int", "flag", "int", 4, false, 24)]
[DNAFieldAttribute(8, "char", 1, "*name", "char", true, 8)]
public char name;
[DNAFieldAttribute(8, "char", 2, "*description", "char", true, 16)]
public char description;
[DNAFieldAttribute(4, "int", 3, "flag", "int", false, 24)]
public int flag;
[DNAFieldAttribute(4, "char", "_pad[4]", "System.Char[]", 4, false, 28)]
[DNAFieldAttribute(4, "char", 4, "_pad[4]", "System.Char[]", false, 28)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(5, "bNodeTreeInterfaceItem", "**items_array", "bNodeTreeInterfaceItem", 8, true, 32)]
public bNodeTreeInterfaceItem ptr_ptr_items_array;
[DNAFieldAttribute(6, "int", "items_num", "int", 4, false, 40)]
[DNAFieldAttribute(4, "int", 6, "items_num", "int", false, 32)]
public int items_num;
[DNAFieldAttribute(7, "int", "identifier", "int", 4, false, 44)]
[DNAFieldAttribute(4, "int", 7, "identifier", "int", false, 36)]
public int identifier;
public bNodeTreeInterfacePanel() {
this.item = default;
this.ptr_name = default;
this.ptr_description = default;
this.name = default;
this.description = default;
this.flag = default;
this._pad = default;
this.ptr_ptr_items_array = default;
this.items_num = default;
this.identifier = default;
}
public bNodeTreeInterfacePanel(bNodeTreeInterfaceItem item, char ptr_name, char ptr_description, int flag, char[] _pad, bNodeTreeInterfaceItem ptr_ptr_items_array, int items_num, int identifier) {
public bNodeTreeInterfacePanel(bNodeTreeInterfaceItem item, char name, char description, int flag, char[] _pad, int items_num, int identifier) {
this.item = item;
this.ptr_name = ptr_name;
this.ptr_description = ptr_description;
this.name = name;
this.description = description;
this.flag = flag;
this._pad = _pad;
this.ptr_ptr_items_array = ptr_ptr_items_array;
this.items_num = items_num;
this.identifier = identifier;
}