Skip to content
Snippets Groups Projects
Commit aeb942ad authored by BEL KHALIFA Mohamed amine's avatar BEL KHALIFA Mohamed amine
Browse files

Class squareCell

parent 624828aa
Branches
No related tags found
No related merge requests found
Pipeline #10215 failed
......@@ -8,6 +8,21 @@ import java.util.List;
public class SquareCell extends AbstractCell{
List<Cell> neighbours;
public void squareCell() {
Color DEFAULT_CELL_COLOR;
List<Cell> neighbours;
}
public void squareCell(Color color) {
this.setColor(color);
}
public void squareCell(Color color, List<Cell> neighbours) {
this.setColor(color);
this.setNeighbours(neighbours);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment