namespace BurnOutSharp.Models.PortableExecutable
{
///
/// Contains the information necessary for an application to access a specific font. The structure
/// definition provided here is for explanation only; it is not present in any standard header file.
///
///
public class FontGroupHeader
{
///
/// The number of individual fonts associated with this resource.
///
public ushort NumberOfFonts;
///
/// A structure that contains a unique ordinal identifier for each font in the resource. The DE
/// member is a placeholder for the variable-length array of DIRENTRY structures.
///
public DirEntry[] DE;
}
}