Correctifs mineurs

This commit is contained in:
Loris BALOCCHI 2024-06-05 19:35:10 +02:00
parent a7f30467ed
commit 1be90f0e64
6 changed files with 16 additions and 0 deletions

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"makefile.makefilePath": "C:\\Users\\Loris\\OneDrive - UPEC\\Documents\\DEV\\SAE_DEV_JAVA\\makefile"
}

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,13 @@
package com.charpentierbalocchi.dorfjavatik.main;
import com.charpentierbalocchi.dorfjavatik.view.FenetreDemarrage;
public class DorfJavaTik {
public static void main(String[] args) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
new FenetreDemarrage();
}
});
}
}