Files
BlenderSharp/BlendFile/DNA/bNodeTreeInterfacePanel.cs
2025-02-19 17:07:50 +01:00

56 lines
2.3 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(566, "bNodeTreeInterfacePanel")]
public class bNodeTreeInterfacePanel {
[DNAFieldAttribute(0, "bNodeTreeInterfaceItem", "item", "bNodeTreeInterfaceItem", 8, false)]
public bNodeTreeInterfaceItem item;
[DNAFieldAttribute(1, "char", "*name", "char", 4, true)]
public char ptr_name;
[DNAFieldAttribute(2, "char", "*description", "char", 4, true)]
public char ptr_description;
[DNAFieldAttribute(3, "int", "flag", "int", 4, false)]
public int flag;
[DNAFieldAttribute(4, "char", "_pad[4]", "System.Char[]", 4, false)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(5, "bNodeTreeInterfaceItem", "**items_array", "bNodeTreeInterfaceItem", 4, true)]
public bNodeTreeInterfaceItem ptr_ptr_items_array;
[DNAFieldAttribute(6, "int", "items_num", "int", 4, false)]
public int items_num;
[DNAFieldAttribute(7, "int", "identifier", "int", 4, false)]
public int identifier;
public bNodeTreeInterfacePanel() {
this.item = default;
this.ptr_name = default;
this.ptr_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) {
this.item = item;
this.ptr_name = ptr_name;
this.ptr_description = ptr_description;
this.flag = flag;
this._pad = _pad;
this.ptr_ptr_items_array = ptr_ptr_items_array;
this.items_num = items_num;
this.identifier = identifier;
}
}
}