Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -37,6 +37,19 @@ namespace BlendFile.DNA {
public int selc;
[DNAFieldAttribute(10, "double", "mtime", 8)]
public double mtime;
public Text() {
this.id = default;
this.ptr_name = default;
this.ptr_compiled = default;
this.flags = default;
this._pad0 = default;
this.lines = default;
this.ptr_curl = default;
this.ptr_sell = default;
this.curc = default;
this.selc = default;
this.mtime = default;
}
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;
this.ptr_name = ptr_name;