Add new retro theme & fix touch input problem

This commit is contained in:
Marcel
2018-02-18 12:45:54 +01:00
parent a289edaae9
commit d5cd080aba
9 changed files with 122 additions and 35 deletions

View File

@@ -2,6 +2,7 @@ class Arena {
constructor(gameInfo, game) {
this.g = gameInfo;
this.game = game;
this.p = this.g.player;
this.field = createMatrix(this.g.fieldSize.x, this.g.fieldSize.y);
}