48 lines
1.7 KiB
C#
48 lines
1.7 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(973, "TextLine")]
|
|
public class TextLine {
|
|
[DNAFieldAttribute(0, "TextLine", "*next", "TextLine", 4, true)]
|
|
public TextLine ptr_next;
|
|
[DNAFieldAttribute(1, "TextLine", "*prev", "TextLine", 4, true)]
|
|
public TextLine ptr_prev;
|
|
[DNAFieldAttribute(2, "char", "*line", "char", 4, true)]
|
|
public char ptr_line;
|
|
[DNAFieldAttribute(3, "char", "*format", "char", 4, true)]
|
|
public char ptr_format;
|
|
[DNAFieldAttribute(4, "int", "len", "int", 4, false)]
|
|
public int len;
|
|
[DNAFieldAttribute(5, "char", "_pad0[4]", "System.Char[]", 4, false)]
|
|
public char[] _pad0 = new System.Char[4];
|
|
public TextLine() {
|
|
this.ptr_next = default;
|
|
this.ptr_prev = default;
|
|
this.ptr_line = default;
|
|
this.ptr_format = default;
|
|
this.len = default;
|
|
this._pad0 = default;
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
}
|