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,25 +15,25 @@ namespace BlendFile.DNA {
[DNAClassAttribute(40, "PackedFile", 24)]
public class PackedFile {
[DNAFieldAttribute(0, "int", "size", "int", 4, false, 0)]
[DNAFieldAttribute(4, "int", 0, "size", "int", false, 0)]
public int size;
[DNAFieldAttribute(1, "int", "seek", "int", 4, false, 4)]
[DNAFieldAttribute(4, "int", 1, "seek", "int", false, 4)]
public int seek;
[DNAFieldAttribute(2, "void", "*data", "void", 8, true, 8)]
public object ptr_data;
[DNAFieldAttribute(3, "ImplicitSharingInfoHandle", "*sharing_info", "ImplicitSharingInfoHandle", 8, true, 16)]
public ImplicitSharingInfoHandle ptr_sharing_info;
[DNAFieldAttribute(8, "void", 2, "*data", "void", true, 8)]
public object data;
[DNAFieldAttribute(8, "ImplicitSharingInfoHandle", 3, "*sharing_info", "ImplicitSharingInfoHandle", true, 16)]
public ImplicitSharingInfoHandle sharing_info;
public PackedFile() {
this.size = default;
this.seek = default;
this.ptr_data = default;
this.ptr_sharing_info = default;
this.data = default;
this.sharing_info = default;
}
public PackedFile(int size, int seek, object ptr_data, ImplicitSharingInfoHandle ptr_sharing_info) {
public PackedFile(int size, int seek, object data, ImplicitSharingInfoHandle sharing_info) {
this.size = size;
this.seek = seek;
this.ptr_data = ptr_data;
this.ptr_sharing_info = ptr_sharing_info;
this.data = data;
this.sharing_info = sharing_info;
}
}
}