|
|
@ -141,9 +141,17 @@ public class TicTacToeGame implements ActionListener { |
|
|
|
{ |
|
|
|
oWin(2, 5, 8); |
|
|
|
} |
|
|
|
|
|
|
|
else if ((bton[6].getText() == "O") && (bton[7].getText() == "O") && (bton[8].getText() == "O")) |
|
|
|
{ |
|
|
|
oWin(6, 7, 8); |
|
|
|
} |
|
|
|
else if ((bton[3].getText()== "O") && (bton[4].getText() == "O") && (bton[5].getText() == "O")) |
|
|
|
oWin(3,4,5); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//method if player 0 wins |
|
|
|
private void oWin(int i, int i1, int i2) { |
|
|
|
bton[i].setBackground(Color.PINK); |
|
|
|