//------------------------------------------------------------------------------ // // 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(973, "TextLine", 40)] public class TextLine { [DNAFieldAttribute(8, "TextLine", 0, "*next", "TextLine", true, 0)] public TextLine next; [DNAFieldAttribute(8, "TextLine", 1, "*prev", "TextLine", true, 8)] public TextLine prev; [DNAFieldAttribute(8, "char", 2, "*line", "char", true, 16)] public char line; [DNAFieldAttribute(8, "char", 3, "*format", "char", true, 24)] public char format; [DNAFieldAttribute(4, "int", 4, "len", "int", false, 32)] public int len; [DNAArrayAttribute(4, "char", 5, "_pad0[4]", "System.Char[]", 4, 36)] public char[] _pad0 = new System.Char[4]; public TextLine() { this.next = default; this.prev = default; this.line = default; this.format = default; this.len = default; this._pad0 = default; } public TextLine(TextLine next, TextLine prev, char line, char format, int len, char[] _pad0) { this.next = next; this.prev = prev; this.line = line; this.format = format; this.len = len; this._pad0 = _pad0; } } }