Files
SAE31_2024/TestV1/TestEnAttendantResolutionBug/Main.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();
}
}