//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(854, "PanelCategoryStack", 80)] public class PanelCategoryStack { [DNAFieldAttribute(8, "PanelCategoryStack", 0, "*next", "PanelCategoryStack", true, 0)] public PanelCategoryStack next; [DNAFieldAttribute(8, "PanelCategoryStack", 1, "*prev", "PanelCategoryStack", true, 8)] public PanelCategoryStack prev; [DNAFieldAttribute(64, "char", 2, "idname[64]", "System.Char[]", false, 16)] public char[] idname = new System.Char[64]; public PanelCategoryStack() { this.next = default; this.prev = default; this.idname = default; } public PanelCategoryStack(PanelCategoryStack next, PanelCategoryStack prev, char[] idname) { this.next = next; this.prev = prev; this.idname = idname; } } }