pub struct PCScreenFont {
pub version: u32,
pub flags: u32,
pub height: u32,
pub width: u32,
pub glyphs: &'static [Glyph],
pub unitable: &'static [&'static [u8]],
}Expand description
A more useful form of RawPCScreenFont.
Fields§
§version: u32The version. Should be 0.
flags: u32Flags. 0 if there’s no unicode table.
height: u32The height of each glyph.
width: u32The width of each glyph.
glyphs: &'static [Glyph]The glyphs.
unitable: &'static [&'static [u8]]The unicode translation table.