//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using BlendFile.CompatTypes; using System; 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; } } }