19 lines
632 B
C#
19 lines
632 B
C#
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
|
namespace BlendFile.DNA {
|
|
|
|
public class VFont {
|
|
public ID id;
|
|
public char[] name = new System.Char[1024];
|
|
public VFontData ptr_data;
|
|
public PackedFile ptr_packedfile;
|
|
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;
|
|
}
|
|
}
|
|
}
|