You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
277 B
JavaScript

const GAME_VERSION = 'v0.0';
const ctx = canvas.getContext('2d');
let canvasLeft = canvas.offsetLeft + canvas.clientLeft;
let canvasTop = canvas.offsetTop + canvas.clientTop;
ctx.font = "12px Arial";
canvas.style.backgroundColor = 'rgb(143 153 150)';
ctx.fillStyle = '#000';