readFontZip function

BitmapFont readFontZip(
  1. List<int> bytes
)

Decode a BitmapFont from the contents of a zip file that stores the .fnt font definition and associated PNG images.

Implementation

BitmapFont readFontZip(List<int> bytes) => BitmapFont.fromZip(bytes);