|
|
@ -137,8 +137,13 @@ public class TicTacToeGame implements ActionListener { |
|
|
|
{ |
|
|
|
oWin(2, 4, 6); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
else if ((bton[2].getText() == "O") && (bton[5].getText() == "O") && (bton[8].getText() == "O")) |
|
|
|
{ |
|
|
|
oWin(2, 5, 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); |
|
|
|