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

@@ -33,6 +33,17 @@ namespace BlendFile.DNA {
public short versionfile;
[DNAFieldAttribute(8, "short", "subversionfile", 2)]
public short subversionfile;
public Library_Runtime() {
this.ptr_name_map = default;
this.ptr_filedata = default;
this.filepath_abs = default;
this.ptr_parent = default;
this.tag = default;
this._pad = default;
this.temp_index = default;
this.versionfile = default;
this.subversionfile = default;
}
public Library_Runtime(UniqueName_Map ptr_name_map, FileData ptr_filedata, char[] filepath_abs, Library ptr_parent, ushort tag, char[] _pad, int temp_index, short versionfile, short subversionfile) {
this.ptr_name_map = ptr_name_map;
this.ptr_filedata = ptr_filedata;