Changement de couleurs

This commit is contained in:
2023-04-27 19:10:09 +02:00
parent e9651316bf
commit 5f4f03a40a
6 changed files with 98 additions and 141 deletions

View File

@@ -24,7 +24,7 @@ public class GridController {
TheseeController theseeController = new TheseeController(this.model.getThesee(), this.view);
this.view.setPreferredSize(new Dimension(700, 500));
this.view.setBackground(Color.WHITE);
this.view.setBackground(new Color(193, 190, 180));
this.view.addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent e) {
@@ -123,8 +123,4 @@ public class GridController {
System.out.println(e.getMessage());
}
}
public GridView getView() {
return this.view;
}
}