UNPKG

@phaserjs/phaser

Version:
7 lines (6 loc) 183 B
export function CreateCanvas(width, height) { const canvas = document.createElement("canvas"); canvas.width = width; canvas.height = height; return canvas.getContext("2d"); }