Files
BlenderSharp/BlendFile/DNA/Text.cs
2025-03-11 19:12:04 +01:00

68 lines
2.5 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", 280)]
public class Text {
[DNAFieldAttribute(208, "ID", 0, "id", "ID", false, 0)]
public ID id;
[DNAFieldAttribute(8, "char", 1, "*name", "char", true, 208)]
public char name;
[DNAFieldAttribute(8, "void", 2, "*compiled", "void", true, 216)]
public object compiled;
[DNAFieldAttribute(4, "int", 3, "flags", "int", false, 224)]
public int flags;
[DNAArrayAttribute(4, "char", 4, "_pad0[4]", "System.Char[]", 4, 228)]
public char[] _pad0 = new System.Char[4];
[DNAFieldAttribute(16, "ListBase", 5, "lines", "ListBase", false, 232)]
public ListBase lines;
[DNAFieldAttribute(8, "TextLine", 6, "*curl", "TextLine", true, 248)]
public TextLine curl;
[DNAFieldAttribute(8, "TextLine", 7, "*sell", "TextLine", true, 256)]
public TextLine sell;
[DNAFieldAttribute(4, "int", 8, "curc", "int", false, 264)]
public int curc;
[DNAFieldAttribute(4, "int", 9, "selc", "int", false, 268)]
public int selc;
[DNAFieldAttribute(8, "double", 10, "mtime", "double", false, 272)]
public double mtime;
public Text() {
this.id = default;
this.name = default;
this.compiled = default;
this.flags = default;
this._pad0 = default;
this.lines = default;
this.curl = default;
this.sell = default;
this.curc = default;
this.selc = default;
this.mtime = default;
}
public Text(ID id, char name, object compiled, int flags, char[] _pad0, ListBase lines, TextLine curl, TextLine sell, int curc, int selc, double mtime) {
this.id = id;
this.name = name;
this.compiled = compiled;
this.flags = flags;
this._pad0 = _pad0;
this.lines = lines;
this.curl = curl;
this.sell = sell;
this.curc = curc;
this.selc = selc;
this.mtime = mtime;
}
}
}