Major rework of basic game code - pre-work for multiplayer

Includes automatic generation of required HTML elements and better responsiveness
This commit is contained in:
Marcel
2019-07-18 11:49:06 +02:00
committed by KingOfDog
parent 544b988a9b
commit 06a2e582fd
14 changed files with 627 additions and 357 deletions

6
js/helper-functions.js Normal file
View File

@@ -0,0 +1,6 @@
HTMLCanvasElement.prototype.adjustResolution = function (ctx, scale) {
this.width = this.clientWidth;
this.height = this.clientHeight;
ctx.scale(scale, scale);
};