|
@ -50,6 +50,14 @@ public class StartTicTacToeGame implements ActionListener{ |
|
|
button.setBounds(200, 100, 100,100); |
|
|
button.setBounds(200, 100, 100,100); |
|
|
button.addActionListener(this); |
|
|
button.addActionListener(this); |
|
|
gui.Frame.add(button); |
|
|
gui.Frame.add(button); |
|
|
|
|
|
|
|
|
|
|
|
button2 = new JButton(); |
|
|
|
|
|
button2.setBackground(Color.white); |
|
|
|
|
|
button2.setBounds(350, 100, 100,100); |
|
|
|
|
|
button2.addActionListener(this); |
|
|
|
|
|
gui.Frame.add(button2); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|