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,19 +15,19 @@ namespace BlendFile.DNA {
[DNAClassAttribute(861, "ScrArea_Runtime", 16)]
public class ScrArea_Runtime {
[DNAFieldAttribute(0, "bToolRef", "*tool", "bToolRef", 8, true, 0)]
public bToolRef ptr_tool;
[DNAFieldAttribute(1, "char", "is_tool_set", "char", 1, false, 8)]
[DNAFieldAttribute(8, "bToolRef", 0, "*tool", "bToolRef", true, 0)]
public bToolRef tool;
[DNAFieldAttribute(1, "char", 1, "is_tool_set", "char", false, 8)]
public char is_tool_set;
[DNAFieldAttribute(2, "char", "_pad0[7]", "System.Char[]", 7, false, 9)]
[DNAFieldAttribute(7, "char", 2, "_pad0[7]", "System.Char[]", false, 9)]
public char[] _pad0 = new System.Char[7];
public ScrArea_Runtime() {
this.ptr_tool = default;
this.tool = default;
this.is_tool_set = default;
this._pad0 = default;
}
public ScrArea_Runtime(bToolRef ptr_tool, char is_tool_set, char[] _pad0) {
this.ptr_tool = ptr_tool;
public ScrArea_Runtime(bToolRef tool, char is_tool_set, char[] _pad0) {
this.tool = tool;
this.is_tool_set = is_tool_set;
this._pad0 = _pad0;
}