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,12 +11,18 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct Stereo3dFormat {
[DNAFieldAttribute(0, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(1, "char", "display_mode", 1)]
public char display_mode;
[DNAFieldAttribute(2, "char", "anaglyph_type", 1)]
public char anaglyph_type;
[DNAFieldAttribute(3, "char", "interlace_type", 1)]
public char interlace_type;
[DNAFieldAttribute(4, "char", "_pad[3]", 1)]
public char[] _pad = new System.Char[3];
public Stereo3dFormat(short flag, char display_mode, char anaglyph_type, char interlace_type, char[] _pad) {
this.flag = flag;