UNPKG

blaze-2d

Version:

A fast and simple WebGL 2 2D game engine written in TypeScript

9 lines (8 loc) 167 B
/** * Map to store data which belongs to certain z indexes of the world. */ export interface ZMap<T> { [index: number]: T; max?: number; min?: number; }