//------------------------------------------------------------------------------ // // 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(964, "SpaceStatusBar")] public class SpaceStatusBar { [DNAFieldAttribute(0, "SpaceLink", "*next", "SpaceLink", 4, true)] public SpaceLink ptr_next; [DNAFieldAttribute(1, "SpaceLink", "*prev", "SpaceLink", 4, true)] public SpaceLink ptr_prev; [DNAFieldAttribute(2, "ListBase", "regionbase", "ListBase", 16, false)] public ListBase regionbase; [DNAFieldAttribute(3, "char", "spacetype", "char", 1, false)] public char spacetype; [DNAFieldAttribute(4, "char", "link_flag", "char", 1, false)] public char link_flag; [DNAFieldAttribute(5, "char", "_pad0[6]", "System.Char[]", 6, false)] public char[] _pad0 = new System.Char[6]; public SpaceStatusBar() { this.ptr_next = default; this.ptr_prev = default; this.regionbase = default; this.spacetype = default; this.link_flag = default; this._pad0 = default; } public SpaceStatusBar(SpaceLink ptr_next, SpaceLink ptr_prev, ListBase regionbase, char spacetype, char link_flag, char[] _pad0) { this.ptr_next = ptr_next; this.ptr_prev = ptr_prev; this.regionbase = regionbase; this.spacetype = spacetype; this.link_flag = link_flag; this._pad0 = _pad0; } } }