Files
BlenderSharp/BlendFile/DNA/PanelCategoryStack.cs

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", 80)]
public class PanelCategoryStack {
[DNAFieldAttribute(0, "PanelCategoryStack", "*next", "PanelCategoryStack", 8, true, 0)]
public PanelCategoryStack ptr_next;
[DNAFieldAttribute(1, "PanelCategoryStack", "*prev", "PanelCategoryStack", 8, true, 8)]
public PanelCategoryStack ptr_prev;
[DNAFieldAttribute(2, "char", "idname[64]", "System.Char[]", 64, false, 16)]
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;
}
}
}