cc.squirreljme.runtime.lcdui.font.SQFFont

This represents a SQF Font (SquirrelJME Font) which is a compacted and simplified font representation that is made to be as simple as possible by having the desired goals: small, low memory, easy to load. All fonts are ISO-8859-15, same sized cells for each characters although their width can differ. The font is in the following format: - int8 pixelheight. - int8 ascent. - int8 descent. - int8 bytesperscan (The number of bytes per scanline). - int8[256] charwidths. - int8[256] isvalidchar. - uint[256 * bytesperscan * pixelheight] charbmp.