Files
BlenderSharp/BlendFile/DNA/TextLine.cs
2025-01-22 20:24:55 +01:00

39 lines
1.3 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;
public class TextLine {
[DNAFieldAttribute(0, "TextLine", "*next", 40)]
public TextLine ptr_next;
[DNAFieldAttribute(1, "TextLine", "*prev", 40)]
public TextLine ptr_prev;
[DNAFieldAttribute(2, "char", "*line", 1)]
public char ptr_line;
[DNAFieldAttribute(3, "char", "*format", 1)]
public char ptr_format;
[DNAFieldAttribute(4, "int", "len", 4)]
public int len;
[DNAFieldAttribute(5, "char", "_pad0[4]", 1)]
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;
}
}
}