builded Correct Button
@ -59,6 +59,12 @@ public class Main {
retryButton.setBounds(5, 525, 100, 25);
rootPanel.add(retryButton);
JButton correctButton = new JButton();
correctButton.setVisible(true);
correctButton.setText("Correct");
correctButton.setBounds(395, 525, 100, 25);
rootPanel.add(correctButton);
}
});