diff --git a/src/GomokuGame.java b/src/GomokuGame.java index 8b8498d..76e2040 100644 --- a/src/GomokuGame.java +++ b/src/GomokuGame.java @@ -51,14 +51,13 @@ public class GomokuGame { this.board = new GomokuBoard(15, 15); this.colorP1 = colorPlayer1; - this.currP = this.player1.color == Color.WHITE ? 1: 2; + this.currP = this.player1.color == Color.WHITE ? 1 : 2; this.nbTokens1 = 60; this.nbTokens2 = 60; } public void startGame() { - } /** @@ -107,7 +106,7 @@ public class GomokuGame { c = 'X'; break; case WHITE: - + break; case NIL: c = '.';