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,13 +11,20 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class TextLine {
[DNAFieldAttribute(0, "TextLine", "*next", 40)]
public TextLine ptr_next;
[DNAFieldAttribute(1, "TextLine", "*prev", 40)]
public TextLine ptr_prev;
[DNAFieldAttribute(2, "char", "*line", 1)]
public char ptr_line;
[DNAFieldAttribute(3, "char", "*format", 1)]
public char ptr_format;
[DNAFieldAttribute(4, "int", "len", 4)]
public int len;
[DNAFieldAttribute(5, "char", "_pad0[4]", 1)]
public char[] _pad0 = new System.Char[4];
public TextLine(TextLine ptr_next, TextLine ptr_prev, char ptr_line, char ptr_format, int len, char[] _pad0) {
this.ptr_next = ptr_next;