commit de fin

This commit is contained in:
dumasa
2022-03-22 06:10:18 -07:00
commit 8080015638
248 changed files with 1543 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package fr.iutfbleau.projetIHM2021FI2;
import fr.iutfbleau.projetIHM2021FI2.Model.*;
import fr.iutfbleau.projetIHM2021FI2.View.*;
/**
* La classe Main permet le démarrage du programme.
*
* @version 1.0
* @author Anice TAJGALT, Gianni MANZARI, Alban DUMAS
*/
public class Main {
static public void main(String[] args) {
ConnexionBDD.getInstance();
WindowView window = new WindowView();
}
}