()
| 386 | } |
| 387 | |
| 388 | private startTicTacToe(): void{ |
| 389 | // Reset the array |
| 390 | this.ticTacToeBoard = []; |
| 391 | |
| 392 | // Add the signs to the board |
| 393 | for(var i = 0; i < 5; i++){ |
| 394 | this.ticTacToeBoard.push([]); |
| 395 | for(var j = 0; j < 5; j++){ |
| 396 | this.ticTacToeBoard[i].push(ATreeTicTacToeSign.NO_SIGN); |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | // Set the step |
| 401 | this.ticTacToeStep = ATreeTicTacToeStep.PLAYING; |
| 402 | } |
| 403 | |
| 404 | private update(): void{ |
| 405 | // Erase everything |
no outgoing calls
no test coverage detected