Files
BlenderSharp/BlendFile/DNA/ScrGlobalAreaData.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

40 lines
1.4 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")]
public struct ScrGlobalAreaData {
[DNAFieldAttribute(0, "short", "cur_fixed_height", 2)]
public short cur_fixed_height;
[DNAFieldAttribute(1, "short", "size_min", 2)]
public short size_min;
[DNAFieldAttribute(2, "short", "size_max", 2)]
public short size_max;
[DNAFieldAttribute(3, "short", "align", 2)]
public short align;
[DNAFieldAttribute(4, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(5, "char", "_pad[2]", 1)]
public char[] _pad = new System.Char[2];
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;
}
}
}