Files
BlenderSharp/BlendFile/DNA/Text.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

42 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 {
public class Text {
public ID id;
public char ptr_name;
public object ptr_compiled;
public int flags;
public char[] _pad0 = new System.Char[4];
public ListBase lines;
public TextLine ptr_curl;
public TextLine ptr_sell;
public int curc;
public int selc;
public double mtime;
public Text(ID id, char ptr_name, object ptr_compiled, int flags, char[] _pad0, ListBase lines, TextLine ptr_curl, TextLine ptr_sell, int curc, int selc, double mtime) {
this.id = id;
this.ptr_name = ptr_name;
this.ptr_compiled = ptr_compiled;
this.flags = flags;
this._pad0 = _pad0;
this.lines = lines;
this.ptr_curl = ptr_curl;
this.ptr_sell = ptr_sell;
this.curc = curc;
this.selc = selc;
this.mtime = mtime;
}
}
}