Files
BlenderSharp/BlendFile/DNA/TextLine.cs
2025-01-22 17:40:14 +01:00

33 lines
1019 B
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 BlendFile.CompatTypes;
using System;
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;
}
}
}