//------------------------------------------------------------------------------ // // 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(860, "ScrGlobalAreaData", 12)] public class ScrGlobalAreaData { [DNAFieldAttribute(2, "short", 0, "cur_fixed_height", "short", false, 0)] public short cur_fixed_height; [DNAFieldAttribute(2, "short", 1, "size_min", "short", false, 2)] public short size_min; [DNAFieldAttribute(2, "short", 2, "size_max", "short", false, 4)] public short size_max; [DNAFieldAttribute(2, "short", 3, "align", "short", false, 6)] public short align; [DNAFieldAttribute(2, "short", 4, "flag", "short", false, 8)] public short flag; [DNAArrayAttribute(2, "char", 5, "_pad[2]", "System.Char[]", 2, false, 10)] public char[] _pad = new System.Char[2]; public ScrGlobalAreaData() { this.cur_fixed_height = default; this.size_min = default; this.size_max = default; this.align = default; this.flag = default; this._pad = default; } public ScrGlobalAreaData(short cur_fixed_height, short size_min, short size_max, short align, short flag, char[] _pad) { this.cur_fixed_height = cur_fixed_height; this.size_min = size_min; this.size_max = size_max; this.align = align; this.flag = flag; this._pad = _pad; } } }