UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

13 lines 504 B
/** * * @param {CanvasRenderingContext2D} ctx * @param {number} width * @param {number} height * @param {string} [color] CSS color specification * @param {number} [spacing] distance between grid lines * @param {number} [offset_x] * @param {number} [offset_y] * @param {number} [thickness] Like thickness */ export function canvas2d_draw_grid({ ctx, width, height, color, spacing, offset_x, offset_y, thickness }: CanvasRenderingContext2D): void; //# sourceMappingURL=canvas2d_draw_grid.d.ts.map