Files
BlenderSharp/BlendFile/DNA/VFont.cs
2025-01-22 02:23:29 +01:00

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;
}
}
}