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.

12 lines (11 loc) 247 B
import Rect from "./rect"; /** * Helper class to store Glyph (font symbol/codenumber and image Rect location). */ declare class Glyph { codenumber: number; symbol: string; description: string; rect: Rect; } export default Glyph;