pub struct Glyph {
pub len: u32,
pub height: u32,
pub width: u32,
pub data: &'static [u8],
}Expand description
The glyph type for PCScreenFont.
Fields§
§len: u32The size of this glyph.
height: u32The height of this glyph.
width: u32The width of this glyph.
data: &'static [u8]The raw glyph data.