Files
BlenderSharp/BlendFile/DNA/WorkSpaceInstanceHook.cs
2025-03-04 18:48:04 +01:00

40 lines
1.6 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(1054, "WorkSpaceInstanceHook", 32)]
public class WorkSpaceInstanceHook {
[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.active = default;
this.act_layout = default;
this.temp_workspace_store = default;
this.temp_layout_store = default;
}
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;
}
}
}