Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

@@ -15,19 +15,19 @@ namespace BlendFile.DNA {
[DNAClassAttribute(959, "ConsoleLine", 40)]
public class ConsoleLine {
[DNAFieldAttribute(0, "ConsoleLine", "*next", "ConsoleLine", 8, true)]
[DNAFieldAttribute(0, "ConsoleLine", "*next", "ConsoleLine", 8, true, 0)]
public ConsoleLine ptr_next;
[DNAFieldAttribute(1, "ConsoleLine", "*prev", "ConsoleLine", 8, true)]
[DNAFieldAttribute(1, "ConsoleLine", "*prev", "ConsoleLine", 8, true, 8)]
public ConsoleLine ptr_prev;
[DNAFieldAttribute(2, "int", "len_alloc", "int", 4, false)]
[DNAFieldAttribute(2, "int", "len_alloc", "int", 4, false, 16)]
public int len_alloc;
[DNAFieldAttribute(3, "int", "len", "int", 4, false)]
[DNAFieldAttribute(3, "int", "len", "int", 4, false, 20)]
public int len;
[DNAFieldAttribute(4, "char", "*line", "char", 8, true)]
[DNAFieldAttribute(4, "char", "*line", "char", 8, true, 24)]
public char ptr_line;
[DNAFieldAttribute(5, "int", "cursor", "int", 4, false)]
[DNAFieldAttribute(5, "int", "cursor", "int", 4, false, 32)]
public int cursor;
[DNAFieldAttribute(6, "int", "type", "int", 4, false)]
[DNAFieldAttribute(6, "int", "type", "int", 4, false, 36)]
public int type;
public ConsoleLine() {
this.ptr_next = default;