X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=tictactoe.js;h=11b4295df247ced277c82d8f1501369483a7a4e0;hb=7b21a4eb7ed2d6d479842b01c35ba6931c3acdc7;hp=12bf6801ac0f20e4f36e444bbb9fab1909fce116;hpb=40abb70f85a1f833c6dfcc8541db3bf876096616;p=lmno-server diff --git a/tictactoe.js b/tictactoe.js index 12bf680..11b4295 100644 --- a/tictactoe.js +++ b/tictactoe.js @@ -1,13 +1,11 @@ const express = require("express"); const Game = require("./game.js"); -const engine_name = "tictactoe"; - const router = express.Router(); class TicTacToe extends Game { constructor() { - super(engine_name); + super(); this.moves = []; this.board = Array(9).fill(null); }