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,25 +15,25 @@ namespace BlendFile.DNA {
[DNAClassAttribute(1054, "WorkSpaceInstanceHook", 32)]
public class WorkSpaceInstanceHook {
[DNAFieldAttribute(0, "WorkSpace", "*active", "WorkSpace", 8, true, 0)]
public WorkSpace ptr_active;
[DNAFieldAttribute(1, "WorkSpaceLayout", "*act_layout", "WorkSpaceLayout", 8, true, 8)]
public WorkSpaceLayout ptr_act_layout;
[DNAFieldAttribute(2, "WorkSpace", "*temp_workspace_store", "WorkSpace", 8, true, 16)]
public WorkSpace ptr_temp_workspace_store;
[DNAFieldAttribute(3, "WorkSpaceLayout", "*temp_layout_store", "WorkSpaceLayout", 8, true, 24)]
public WorkSpaceLayout ptr_temp_layout_store;
[DNAFieldAttribute(8, "WorkSpace", 0, "*active", "WorkSpace", true, 0)]
public WorkSpace active;
[DNAFieldAttribute(8, "WorkSpaceLayout", 1, "*act_layout", "WorkSpaceLayout", true, 8)]
public WorkSpaceLayout act_layout;
[DNAFieldAttribute(8, "WorkSpace", 2, "*temp_workspace_store", "WorkSpace", true, 16)]
public WorkSpace temp_workspace_store;
[DNAFieldAttribute(8, "WorkSpaceLayout", 3, "*temp_layout_store", "WorkSpaceLayout", true, 24)]
public WorkSpaceLayout temp_layout_store;
public WorkSpaceInstanceHook() {
this.ptr_active = default;
this.ptr_act_layout = default;
this.ptr_temp_workspace_store = default;
this.ptr_temp_layout_store = default;
this.active = default;
this.act_layout = default;
this.temp_workspace_store = default;
this.temp_layout_store = default;
}
public WorkSpaceInstanceHook(WorkSpace ptr_active, WorkSpaceLayout ptr_act_layout, WorkSpace ptr_temp_workspace_store, WorkSpaceLayout ptr_temp_layout_store) {
this.ptr_active = ptr_active;
this.ptr_act_layout = ptr_act_layout;
this.ptr_temp_workspace_store = ptr_temp_workspace_store;
this.ptr_temp_layout_store = ptr_temp_layout_store;
public WorkSpaceInstanceHook(WorkSpace active, WorkSpaceLayout act_layout, WorkSpace temp_workspace_store, WorkSpaceLayout temp_layout_store) {
this.active = active;
this.act_layout = act_layout;
this.temp_workspace_store = temp_workspace_store;
this.temp_layout_store = temp_layout_store;
}
}
}