made the board for 4 connect

This commit is contained in:
2020-07-18 21:12:54 +02:00
parent 30c1ede9ec
commit 5f795bfc60
13 changed files with 141 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import javax.swing.*;
public class Executor extends JFrame {
public Executor(){
initUI();
}
private void initUI(){
Board board = new Board();
add(board);
pack();
setDefaultCloseOperation(EXIT_ON_CLOSE);
setLocationRelativeTo(null);
}
public static void main(String[] args) {
Executor executor = new Executor();
executor.setVisible(true);
}
}