Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,31 +15,31 @@ namespace BlendFile.DNA {
[DNAClassAttribute(973, "TextLine", 40)]
public class TextLine {
[DNAFieldAttribute(0, "TextLine", "*next", "TextLine", 8, true, 0)]
public TextLine ptr_next;
[DNAFieldAttribute(1, "TextLine", "*prev", "TextLine", 8, true, 8)]
public TextLine ptr_prev;
[DNAFieldAttribute(2, "char", "*line", "char", 8, true, 16)]
public char ptr_line;
[DNAFieldAttribute(3, "char", "*format", "char", 8, true, 24)]
public char ptr_format;
[DNAFieldAttribute(4, "int", "len", "int", 4, false, 32)]
[DNAFieldAttribute(8, "TextLine", 0, "*next", "TextLine", true, 0)]
public TextLine next;
[DNAFieldAttribute(8, "TextLine", 1, "*prev", "TextLine", true, 8)]
public TextLine prev;
[DNAFieldAttribute(8, "char", 2, "*line", "char", true, 16)]
public char line;
[DNAFieldAttribute(8, "char", 3, "*format", "char", true, 24)]
public char format;
[DNAFieldAttribute(4, "int", 4, "len", "int", false, 32)]
public int len;
[DNAFieldAttribute(5, "char", "_pad0[4]", "System.Char[]", 4, false, 36)]
[DNAFieldAttribute(4, "char", 5, "_pad0[4]", "System.Char[]", false, 36)]
public char[] _pad0 = new System.Char[4];
public TextLine() {
this.ptr_next = default;
this.ptr_prev = default;
this.ptr_line = default;
this.ptr_format = default;
this.next = default;
this.prev = default;
this.line = default;
this.format = default;
this.len = default;
this._pad0 = default;
}
public TextLine(TextLine ptr_next, TextLine ptr_prev, char ptr_line, char ptr_format, int len, char[] _pad0) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_line = ptr_line;
this.ptr_format = ptr_format;
public TextLine(TextLine next, TextLine prev, char line, char format, int len, char[] _pad0) {
this.next = next;
this.prev = prev;
this.line = line;
this.format = format;
this.len = len;
this._pad0 = _pad0;
}