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,17 +11,28 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class StripProxy {
[DNAFieldAttribute(0, "char", "dir[768]", 1)]
public char[] dir = new System.Char[768];
[DNAFieldAttribute(1, "char", "file[256]", 1)]
public char[] file = new System.Char[256];
[DNAFieldAttribute(2, "ImBufAnim", "*anim", 0)]
public ImBufAnim ptr_anim;
[DNAFieldAttribute(3, "short", "tc", 2)]
public short tc;
[DNAFieldAttribute(4, "short", "quality", 2)]
public short quality;
[DNAFieldAttribute(5, "short", "build_size_flags", 2)]
public short build_size_flags;
[DNAFieldAttribute(6, "short", "build_tc_flags", 2)]
public short build_tc_flags;
[DNAFieldAttribute(7, "short", "build_flags", 2)]
public short build_flags;
[DNAFieldAttribute(8, "char", "storage", 1)]
public char storage;
[DNAFieldAttribute(9, "char", "_pad[5]", 1)]
public char[] _pad = new System.Char[5];
public StripProxy(char[] dir, char[] file, ImBufAnim ptr_anim, short tc, short quality, short build_size_flags, short build_tc_flags, short build_flags, char storage, char[] _pad) {
this.dir = dir;