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,33 +11,60 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class SpaceText {
[DNAFieldAttribute(0, "SpaceLink", "*next", 40)]
public SpaceLink ptr_next;
[DNAFieldAttribute(1, "SpaceLink", "*prev", 40)]
public SpaceLink ptr_prev;
[DNAFieldAttribute(2, "ListBase", "regionbase", 16)]
public ListBase regionbase;
[DNAFieldAttribute(3, "char", "spacetype", 1)]
public char spacetype;
[DNAFieldAttribute(4, "char", "link_flag", 1)]
public char link_flag;
[DNAFieldAttribute(5, "char", "_pad0[6]", 1)]
public char[] _pad0 = new System.Char[6];
[DNAFieldAttribute(6, "Text", "*text", 280)]
public Text ptr_text;
[DNAFieldAttribute(7, "int", "top", 4)]
public int top;
[DNAFieldAttribute(8, "int", "left", 4)]
public int left;
[DNAFieldAttribute(9, "char", "_pad1[4]", 1)]
public char[] _pad1 = new System.Char[4];
[DNAFieldAttribute(10, "short", "flags", 2)]
public short flags;
[DNAFieldAttribute(11, "short", "lheight", 2)]
public short lheight;
[DNAFieldAttribute(12, "int", "tabnumber", 4)]
public int tabnumber;
[DNAFieldAttribute(13, "char", "wordwrap", 1)]
public char wordwrap;
[DNAFieldAttribute(14, "char", "doplugins", 1)]
public char doplugins;
[DNAFieldAttribute(15, "char", "showlinenrs", 1)]
public char showlinenrs;
[DNAFieldAttribute(16, "char", "showsyntax", 1)]
public char showsyntax;
[DNAFieldAttribute(17, "char", "line_hlight", 1)]
public char line_hlight;
[DNAFieldAttribute(18, "char", "overwrite", 1)]
public char overwrite;
[DNAFieldAttribute(19, "char", "live_edit", 1)]
public char live_edit;
[DNAFieldAttribute(20, "char", "_pad2[1]", 1)]
public char[] _pad2 = new System.Char[1];
[DNAFieldAttribute(21, "char", "findstr[256]", 1)]
public char[] findstr = new System.Char[256];
[DNAFieldAttribute(22, "char", "replacestr[256]", 1)]
public char[] replacestr = new System.Char[256];
[DNAFieldAttribute(23, "short", "margin_column", 2)]
public short margin_column;
[DNAFieldAttribute(24, "char", "_pad3[2]", 1)]
public char[] _pad3 = new System.Char[2];
[DNAFieldAttribute(25, "SpaceText_Runtime", "*runtime", 0)]
public SpaceText_Runtime ptr_runtime;
public SpaceText(
SpaceLink ptr_next,