index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/modules/game.js')
-rw-r--r-- | src/modules/game.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/modules/game.js b/src/modules/game.js index 62cca1e..b2f0672 100644 --- a/src/modules/game.js +++ b/src/modules/game.js @@ -13,11 +13,8 @@ export default class Game { const board = this.getBoard(); - this.firingArc = new FiringArc(svg, board); + this.firingArc = FiringArc(svg, board); this.sightLine = SightLine(svg, board); - - console.log(this.sightLine); - this.counter = new Counter(svg); this.setUpCells(); |