public Color getCaseColor(int x, int y) {
   int axe;
   y = y * this.nbCasesLignes;
   axe = y + x;
   Case cas = this.grille.get(axe);
   return cas.getColor();
 }