Beispiel #1
0
 /**
  * Getter para ver si la mano pertenece al rango, usando coordenadas
  *
  * @param x
  * @param y
  * @return
  */
 public boolean getManoEnRango(int x, int y) {
   if (Utilidades.sonCoordValidas(x, y)) {
     return this.rango[x][y];
   } else {
     throw new EIndiceInvalido();
   }
 }