Files
BlenderSharp/BlendFile/DNA/WorkSpaceInstanceHook.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

34 lines
1.4 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")]
public class WorkSpaceInstanceHook {
[DNAFieldAttribute(0, "WorkSpace", "*active", 328)]
public WorkSpace ptr_active;
[DNAFieldAttribute(1, "WorkSpaceLayout", "*act_layout", 88)]
public WorkSpaceLayout ptr_act_layout;
[DNAFieldAttribute(2, "WorkSpace", "*temp_workspace_store", 328)]
public WorkSpace ptr_temp_workspace_store;
[DNAFieldAttribute(3, "WorkSpaceLayout", "*temp_layout_store", 88)]
public WorkSpaceLayout ptr_temp_layout_store;
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;
}
}
}