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,29 +15,29 @@ namespace BlendFile.DNA {
[DNAClassAttribute(215, "VFont", 1256)]
public class VFont {
[DNAFieldAttribute(0, "ID", "id", "ID", 208, false, 0)]
[DNAFieldAttribute(208, "ID", 0, "id", "ID", false, 0)]
public ID id;
[DNAFieldAttribute(1, "char", "name[1024]", "System.Char[]", 1024, false, 208)]
[DNAFieldAttribute(1024, "char", 1, "name[1024]", "System.Char[]", false, 208)]
public char[] name = new System.Char[1024];
[DNAFieldAttribute(2, "VFontData", "*data", "VFontData", 8, true, 1232)]
public VFontData ptr_data;
[DNAFieldAttribute(3, "PackedFile", "*packedfile", "PackedFile", 8, true, 1240)]
public PackedFile ptr_packedfile;
[DNAFieldAttribute(4, "PackedFile", "*temp_pf", "PackedFile", 8, true, 1248)]
public PackedFile ptr_temp_pf;
[DNAFieldAttribute(8, "VFontData", 2, "*data", "VFontData", true, 1232)]
public VFontData data;
[DNAFieldAttribute(8, "PackedFile", 3, "*packedfile", "PackedFile", true, 1240)]
public PackedFile packedfile;
[DNAFieldAttribute(8, "PackedFile", 4, "*temp_pf", "PackedFile", true, 1248)]
public PackedFile temp_pf;
public VFont() {
this.id = default;
this.name = default;
this.ptr_data = default;
this.ptr_packedfile = default;
this.ptr_temp_pf = default;
this.data = default;
this.packedfile = default;
this.temp_pf = default;
}
public VFont(ID id, char[] name, VFontData ptr_data, PackedFile ptr_packedfile, PackedFile ptr_temp_pf) {
public VFont(ID id, char[] name, VFontData data, PackedFile packedfile, PackedFile temp_pf) {
this.id = id;
this.name = name;
this.ptr_data = ptr_data;
this.ptr_packedfile = ptr_packedfile;
this.ptr_temp_pf = ptr_temp_pf;
this.data = data;
this.packedfile = packedfile;
this.temp_pf = temp_pf;
}
}
}