//------------------------------------------------------------------------------ // // 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 BlendFile.CompatTypes; using System; // Automatically generated by BlenderSharp at 01/22/2025 16:57:57 namespace BlendFile.DNA { public class TextLine { public TextLine ptr_next; public TextLine ptr_prev; public char ptr_line; public char ptr_format; public int len; public char[] _pad0 = new System.Char[4]; public TextLine(TextLine ptr_next, TextLine ptr_prev, char ptr_line, char ptr_format, int len, char[] _pad0) { this.ptr_next = ptr_next; this.ptr_prev = ptr_prev; this.ptr_line = ptr_line; this.ptr_format = ptr_format; this.len = len; this._pad0 = _pad0; } } }