You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
392 B

package de.tims.viergewinnt.ai;
import javax.swing.JFrame;
public class GuiTest {
JFrame frame;
public GuiTest() {
frame = new JFrame();
frame.setSize(500, 500);
Logic logic = new Logic(6);
frame.add(logic.create4gewinntGui());
frame.setVisible(true);
}
public static void main(String[] args) {
// TODO Auto-generated method stub
GuiTest testGui = new GuiTest();
}
}