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,21 +15,21 @@ namespace BlendFile.DNA {
[DNAClassAttribute(32, "ID_Runtime", 32)]
public class ID_Runtime {
[DNAFieldAttribute(0, "ID_Runtime_Remap", "remap", "ID_Runtime_Remap", 16, false, 0)]
[DNAFieldAttribute(16, "ID_Runtime_Remap", 0, "remap", "ID_Runtime_Remap", false, 0)]
public ID_Runtime_Remap remap;
[DNAFieldAttribute(1, "Depsgraph", "*depsgraph", "Depsgraph", 8, true, 16)]
public Depsgraph ptr_depsgraph;
[DNAFieldAttribute(2, "void", "*_pad", "void", 8, true, 24)]
public object ptr__pad;
[DNAFieldAttribute(8, "Depsgraph", 1, "*depsgraph", "Depsgraph", true, 16)]
public Depsgraph depsgraph;
[DNAFieldAttribute(8, "void", 2, "*_pad", "void", true, 24)]
public object _pad;
public ID_Runtime() {
this.remap = default;
this.ptr_depsgraph = default;
this.ptr__pad = default;
this.depsgraph = default;
this._pad = default;
}
public ID_Runtime(ID_Runtime_Remap remap, Depsgraph ptr_depsgraph, object ptr__pad) {
public ID_Runtime(ID_Runtime_Remap remap, Depsgraph depsgraph, object _pad) {
this.remap = remap;
this.ptr_depsgraph = ptr_depsgraph;
this.ptr__pad = ptr__pad;
this.depsgraph = depsgraph;
this._pad = _pad;
}
}
}