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,13 +15,13 @@ namespace BlendFile.DNA {
[DNAClassAttribute(874, "FileHandler", 8)]
public class FileHandler {
[DNAFieldAttribute(0, "FileHandlerTypeHandle", "*type", "FileHandlerTypeHandle", 8, true, 0)]
public FileHandlerTypeHandle ptr_type;
[DNAFieldAttribute(8, "FileHandlerTypeHandle", 0, "*type", "FileHandlerTypeHandle", true, 0)]
public FileHandlerTypeHandle type;
public FileHandler() {
this.ptr_type = default;
this.type = default;
}
public FileHandler(FileHandlerTypeHandle ptr_type) {
this.ptr_type = ptr_type;
public FileHandler(FileHandlerTypeHandle type) {
this.type = type;
}
}
}