diff --git a/src/main/java/game/StartTicTacToeGame.java b/src/main/java/game/StartTicTacToeGame.java index 132de66..44d2a24 100644 --- a/src/main/java/game/StartTicTacToeGame.java +++ b/src/main/java/game/StartTicTacToeGame.java @@ -50,6 +50,14 @@ public class StartTicTacToeGame implements ActionListener{ button.setBounds(200, 100, 100,100); button.addActionListener(this); gui.Frame.add(button); + + button2 = new JButton(); + button2.setBackground(Color.white); + button2.setBounds(350, 100, 100,100); + button2.addActionListener(this); + gui.Frame.add(button2); + + }