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,17 +15,17 @@ namespace BlendFile.DNA {
[DNAClassAttribute(624, "NodeScriptDict", 16)]
public class NodeScriptDict {
[DNAFieldAttribute(0, "void", "*dict", "void", 8, true, 0)]
public object ptr_dict;
[DNAFieldAttribute(1, "void", "*node", "void", 8, true, 8)]
public object ptr_node;
[DNAFieldAttribute(8, "void", 0, "*dict", "void", true, 0)]
public object dict;
[DNAFieldAttribute(8, "void", 1, "*node", "void", true, 8)]
public object node;
public NodeScriptDict() {
this.ptr_dict = default;
this.ptr_node = default;
this.dict = default;
this.node = default;
}
public NodeScriptDict(object ptr_dict, object ptr_node) {
this.ptr_dict = ptr_dict;
this.ptr_node = ptr_node;
public NodeScriptDict(object dict, object node) {
this.dict = dict;
this.node = node;
}
}
}