diff --git a/app/src/main/java/model/SquareCell.java b/app/src/main/java/model/SquareCell.java index 14f51e9fb9c85ba7fc0c6069ae676556a200bbbe..3b3f157396ca92010786491d687310c86173b0dc 100644 --- a/app/src/main/java/model/SquareCell.java +++ b/app/src/main/java/model/SquareCell.java @@ -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); + } + /**