DEV Community

J V
J V

Posted on

// Basic shooter game using HTML Canvas and JavaScript const canvas = document.createElement('canvas'); const ctx = canvas.getContext('2d'); document.body.appendChild(canvas); canvas.width = 800; canvas.height = 600; let keys = {}; let bullets = []; let e

Top comments (1)

Collapse
 
j_v_2aeae8f58409b9b881f72 profile image
J V

free shooter video game