//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(334, "Stereo3dFormat", 8)] public class Stereo3dFormat { [DNAFieldAttribute(2, "short", 0, "flag", "short", false, 0)] public short flag; [DNAFieldAttribute(1, "char", 1, "display_mode", "char", false, 2)] public char display_mode; [DNAFieldAttribute(1, "char", 2, "anaglyph_type", "char", false, 3)] public char anaglyph_type; [DNAFieldAttribute(1, "char", 3, "interlace_type", "char", false, 4)] public char interlace_type; [DNAFieldAttribute(3, "char", 4, "_pad[3]", "System.Char[]", false, 5)] public char[] _pad = new System.Char[3]; public Stereo3dFormat() { this.flag = default; this.display_mode = default; this.anaglyph_type = default; this.interlace_type = default; this._pad = default; } public Stereo3dFormat(short flag, char display_mode, char anaglyph_type, char interlace_type, char[] _pad) { this.flag = flag; this.display_mode = display_mode; this.anaglyph_type = anaglyph_type; this.interlace_type = interlace_type; this._pad = _pad; } } }