décomposition en MVC

This commit is contained in:
2024-10-24 20:18:06 +02:00
parent dfa6ce6558
commit 1ab7935963
6 changed files with 121 additions and 87 deletions

10
src/main/Main.java Normal file
View File

@@ -0,0 +1,10 @@
package main;
import javax.swing.SwingUtilities;
import view.GameView;
public class Main {
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> new GameView());
}
}