Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,13 +11,20 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
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;