Ajout d'une grille

This commit is contained in:
2020-11-21 19:47:15 +01:00
parent ec5934da57
commit 76b3db983e

View File

@@ -0,0 +1,13 @@
import javax.swing.*;
import java.awt.*;
public class AppThinkerGrid extends JPanel {
/**
* Constructeur de la classe AppThinkerGrid
* @author V.BOULANGER
*/
public AppThinkerGrid(){
this.setBackground(new Color(192, 192, 192));
}
}