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,24 +15,24 @@ namespace BlendFile.DNA {
[DNAClassAttribute(34, "Library", 2304)]
public class Library {
[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, "PackedFile", "*packedfile", "PackedFile", 8, true, 1232)]
public PackedFile ptr_packedfile;
[DNAFieldAttribute(3, "Library_Runtime", "runtime", "Library_Runtime", 1064, false, 1240)]
[DNAFieldAttribute(8, "PackedFile", 2, "*packedfile", "PackedFile", true, 1232)]
public PackedFile packedfile;
[DNAFieldAttribute(1064, "Library_Runtime", 3, "runtime", "Library_Runtime", false, 1240)]
public Library_Runtime runtime;
public Library() {
this.id = default;
this.name = default;
this.ptr_packedfile = default;
this.packedfile = default;
this.runtime = default;
}
public Library(ID id, char[] name, PackedFile ptr_packedfile, Library_Runtime runtime) {
public Library(ID id, char[] name, PackedFile packedfile, Library_Runtime runtime) {
this.id = id;
this.name = name;
this.ptr_packedfile = ptr_packedfile;
this.packedfile = packedfile;
this.runtime = runtime;
}
}