48 lines
1.8 KiB
C#
48 lines
1.8 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(860, "ScrGlobalAreaData", 12)]
|
|
public struct ScrGlobalAreaData {
|
|
[DNAFieldAttribute(0, "short", "cur_fixed_height", "short", 2, false, 0)]
|
|
public short cur_fixed_height;
|
|
[DNAFieldAttribute(1, "short", "size_min", "short", 2, false, 2)]
|
|
public short size_min;
|
|
[DNAFieldAttribute(2, "short", "size_max", "short", 2, false, 4)]
|
|
public short size_max;
|
|
[DNAFieldAttribute(3, "short", "align", "short", 2, false, 6)]
|
|
public short align;
|
|
[DNAFieldAttribute(4, "short", "flag", "short", 2, false, 8)]
|
|
public short flag;
|
|
[DNAFieldAttribute(5, "char", "_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;
|
|
}
|
|
}
|
|
}
|