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(1032, "ModifierViewerPathElem", 40)]
public class ModifierViewerPathElem {
[DNAFieldAttribute(0, "ViewerPathElem", "base", "ViewerPathElem", 32, false, 0)]
[DNAFieldAttribute(32, "ViewerPathElem", 0, "base", "ViewerPathElem", false, 0)]
public ViewerPathElem @base;
[DNAFieldAttribute(1, "char", "*modifier_name", "char", 8, true, 32)]
public char ptr_modifier_name;
[DNAFieldAttribute(8, "char", 1, "*modifier_name", "char", true, 32)]
public char modifier_name;
public ModifierViewerPathElem() {
this.@base = default;
this.ptr_modifier_name = default;
this.modifier_name = default;
}
public ModifierViewerPathElem(ViewerPathElem @base, char ptr_modifier_name) {
public ModifierViewerPathElem(ViewerPathElem @base, char modifier_name) {
this.@base = @base;
this.ptr_modifier_name = ptr_modifier_name;
this.modifier_name = modifier_name;
}
}
}