UNPKG

retrolib

Version:

Render low-res scenes to the canvas in a retro 8-bit era style. Aseprite exported animation wrapper, scene management, sound and image management, particle support.

13 lines (12 loc) 241 B
import Glyph from "./Glyph"; /** * Helper class to store font data. */ declare class FontData { cwidth: number; cheight: number; imagedata: string; codepage: Glyph[]; image: HTMLImageElement; } export default FontData;