9 lines
255 B
Java
9 lines
255 B
Java
public class Main {
|
|
public static void main(String[] args) {
|
|
Board board = new Board();
|
|
GameView view = new GameView(board);
|
|
GameController controller = new GameController(view);
|
|
|
|
controller.startGame();
|
|
}
|
|
} |