Compare commits

..

3 Commits

Author SHA1 Message Date
llample3
faad402258 init: maj 2026-03-27 13:28:45 +01:00
llample3
c9db52afb7 initi: update code creation compte 2026-03-27 13:25:43 +01:00
llample3
00b84dd3ac init: update creation table 2026-03-27 13:22:42 +01:00
22 changed files with 6 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -10,7 +10,7 @@ public class CadreDeConnexion extends JFrame {
setDefaultCloseOperation(EXIT_ON_CLOSE);
setLocationRelativeTo(null); // Centre la fenêtre
// 2. Style du panneau principal (Gris foncé)
// 2. Style du panneau principal (noir )
JPanel panel = new JPanel(new GridBagLayout());
panel.setBackground(new Color(30, 30, 30));
add(panel);

View File

@@ -62,6 +62,10 @@ public class Jeu implements KeyListener, ActionListener{
// Constructeur de la classe
//-------------------------------------------------------------------------
public Jeu(int utilisateurId){
// Créer les tables de la base de données si elles n'existent pas
GestionBDD.creerTableUtilisateurSiAbsente();
GestionBDD.creerTableScoreSiAbsente();
JFrame fenetre = new JFrame();
this.utilisateurId = utilisateurId;

View File

@@ -9,4 +9,5 @@ public class LineaAppli {
}
}