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

44 lines
1.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(215, "VFont", 1256)]
public class VFont {
[DNAFieldAttribute(208, "ID", 0, "id", "ID", false, 0)]
public ID id;
[DNAArrayAttribute(1024, "char", 1, "name[1024]", "System.Char[]", 1024, 208)]
public char[] name = new System.Char[1024];
[DNAFieldAttribute(8, "VFontData", 2, "*data", "VFontData", true, 1232)]
public VFontData data;
[DNAFieldAttribute(8, "PackedFile", 3, "*packedfile", "PackedFile", true, 1240)]
public PackedFile packedfile;
[DNAFieldAttribute(8, "PackedFile", 4, "*temp_pf", "PackedFile", true, 1248)]
public PackedFile temp_pf;
public VFont() {
this.id = default;
this.name = default;
this.data = default;
this.packedfile = default;
this.temp_pf = default;
}
public VFont(ID id, char[] name, VFontData data, PackedFile packedfile, PackedFile temp_pf) {
this.id = id;
this.name = name;
this.data = data;
this.packedfile = packedfile;
this.temp_pf = temp_pf;
}
}
}