Files
BlenderSharp/BlendFile/DNA/VFont.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

30 lines
940 B
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 {
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;
}
}
}