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(682, "NodeInputString", 8)]
public class NodeInputString {
[DNAFieldAttribute(0, "char", "*string", "char", 8, true, 0)]
public char ptr_string;
[DNAFieldAttribute(8, "char", 0, "*string", "char", true, 0)]
public char @string;
public NodeInputString() {
this.ptr_string = default;
this.@string = default;
}
public NodeInputString(char ptr_string) {
this.ptr_string = ptr_string;
public NodeInputString(char @string) {
this.@string = @string;
}
}
}