Files
BlenderSharp/BlendFile/DNA/Text.cs

68 lines
2.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;
[DNAClassAttribute(175, "Text")]
public class Text {
[DNAFieldAttribute(0, "ID", "id", 208)]
public ID id;
[DNAFieldAttribute(1, "char", "*name", 1)]
public char ptr_name;
[DNAFieldAttribute(2, "void", "*compiled", 0)]
public object ptr_compiled;
[DNAFieldAttribute(3, "int", "flags", 4)]
public int flags;
[DNAFieldAttribute(4, "char", "_pad0[4]", 1)]
public char[] _pad0 = new System.Char[4];
[DNAFieldAttribute(5, "ListBase", "lines", 16)]
public ListBase lines;
[DNAFieldAttribute(6, "TextLine", "*curl", 40)]
public TextLine ptr_curl;
[DNAFieldAttribute(7, "TextLine", "*sell", 40)]
public TextLine ptr_sell;
[DNAFieldAttribute(8, "int", "curc", 4)]
public int curc;
[DNAFieldAttribute(9, "int", "selc", 4)]
public int selc;
[DNAFieldAttribute(10, "double", "mtime", 8)]
public double mtime;
public Text() {
this.id = default;
this.ptr_name = default;
this.ptr_compiled = default;
this.flags = default;
this._pad0 = default;
this.lines = default;
this.ptr_curl = default;
this.ptr_sell = default;
this.curc = default;
this.selc = default;
this.mtime = default;
}
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;
}
}
}