Files
BlenderSharp/BlendFile/DNA/PanelCategoryStack.cs
2025-02-19 17:07:50 +01:00

36 lines
1.3 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(854, "PanelCategoryStack")]
public class PanelCategoryStack {
[DNAFieldAttribute(0, "PanelCategoryStack", "*next", "PanelCategoryStack", 4, true)]
public PanelCategoryStack ptr_next;
[DNAFieldAttribute(1, "PanelCategoryStack", "*prev", "PanelCategoryStack", 4, true)]
public PanelCategoryStack ptr_prev;
[DNAFieldAttribute(2, "char", "idname[64]", "System.Char[]", 64, false)]
public char[] idname = new System.Char[64];
public PanelCategoryStack() {
this.ptr_next = default;
this.ptr_prev = default;
this.idname = default;
}
public PanelCategoryStack(PanelCategoryStack ptr_next, PanelCategoryStack ptr_prev, char[] idname) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.idname = idname;
}
}
}