Files
BlenderSharp/BlendFile/DNA/VFont.cs
2025-01-22 20:24:55 +01:00

36 lines
1.2 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;
public class VFont {
[DNAFieldAttribute(0, "ID", "id", 208)]
public ID id;
[DNAFieldAttribute(1, "char", "name[1024]", 1)]
public char[] name = new System.Char[1024];
[DNAFieldAttribute(2, "VFontData", "*data", 0)]
public VFontData ptr_data;
[DNAFieldAttribute(3, "PackedFile", "*packedfile", 24)]
public PackedFile ptr_packedfile;
[DNAFieldAttribute(4, "PackedFile", "*temp_pf", 24)]
public PackedFile ptr_temp_pf;
public VFont(ID id, char[] name, VFontData ptr_data, PackedFile ptr_packedfile, PackedFile ptr_temp_pf) {
this.id = id;
this.name = name;
this.ptr_data = ptr_data;
this.ptr_packedfile = ptr_packedfile;
this.ptr_temp_pf = ptr_temp_pf;
}
}
}