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,18 +11,30 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class Text {
[DNAFieldAttribute(0, "ID", "id", 208)]
public ID id;
[DNAFieldAttribute(1, "char", "*name", 1)]
public char ptr_name;
[DNAFieldAttribute(2, "void", "*compiled", 0)]
public object ptr_compiled;
[DNAFieldAttribute(3, "int", "flags", 4)]
public int flags;
[DNAFieldAttribute(4, "char", "_pad0[4]", 1)]
public char[] _pad0 = new System.Char[4];
[DNAFieldAttribute(5, "ListBase", "lines", 16)]
public ListBase lines;
[DNAFieldAttribute(6, "TextLine", "*curl", 40)]
public TextLine ptr_curl;
[DNAFieldAttribute(7, "TextLine", "*sell", 40)]
public TextLine ptr_sell;
[DNAFieldAttribute(8, "int", "curc", 4)]
public int curc;
[DNAFieldAttribute(9, "int", "selc", 4)]
public int selc;
[DNAFieldAttribute(10, "double", "mtime", 8)]
public double mtime;
public Text(ID id, char ptr_name, object ptr_compiled, int flags, char[] _pad0, ListBase lines, TextLine ptr_curl, TextLine ptr_sell, int curc, int selc, double mtime) {
this.id = id;