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,28 +11,50 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class Panel {
[DNAFieldAttribute(0, "Panel", "*next", 192)]
public Panel ptr_next;
[DNAFieldAttribute(1, "Panel", "*prev", 192)]
public Panel ptr_prev;
[DNAFieldAttribute(2, "PanelType", "*type", 0)]
public PanelType ptr_type;
[DNAFieldAttribute(3, "uiLayout", "*layout", 0)]
public uiLayout ptr_layout;
[DNAFieldAttribute(4, "char", "panelname[64]", 1)]
public char[] panelname = new System.Char[64];
[DNAFieldAttribute(5, "char", "*drawname", 1)]
public char ptr_drawname;
[DNAFieldAttribute(6, "int", "ofsx", 4)]
public int ofsx;
[DNAFieldAttribute(7, "int", "ofsy", 4)]
public int ofsy;
[DNAFieldAttribute(8, "int", "sizex", 4)]
public int sizex;
[DNAFieldAttribute(9, "int", "sizey", 4)]
public int sizey;
[DNAFieldAttribute(10, "int", "blocksizex", 4)]
public int blocksizex;
[DNAFieldAttribute(11, "int", "blocksizey", 4)]
public int blocksizey;
[DNAFieldAttribute(12, "short", "labelofs", 2)]
public short labelofs;
[DNAFieldAttribute(13, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(14, "short", "runtime_flag", 2)]
public short runtime_flag;
[DNAFieldAttribute(15, "char", "_pad[6]", 1)]
public char[] _pad = new System.Char[6];
[DNAFieldAttribute(16, "int", "sortorder", 4)]
public int sortorder;
[DNAFieldAttribute(17, "void", "*activedata", 0)]
public object ptr_activedata;
[DNAFieldAttribute(18, "ListBase", "children", 16)]
public ListBase children;
[DNAFieldAttribute(19, "ListBase", "layout_panel_states", 16)]
public ListBase layout_panel_states;
[DNAFieldAttribute(20, "Panel_Runtime", "*runtime", 0)]
public Panel_Runtime ptr_runtime;
public Panel(
Panel ptr_next,