Skip to content
Snippets Groups Projects
Commit aabe7104 authored by Benoît Harrault's avatar Benoît Harrault
Browse files

Merge branch '29-remove-border-on-same-colored-adjacent-cells' into 'master'

Resolve "Remove border on same colored adjacent cells"

Closes #29

See merge request !26
parents 26bf577e 87aa0814
No related branches found
No related tags found
1 merge request!26Resolve "Remove border on same colored adjacent cells"
Pipeline #3810 passed
......@@ -240,6 +240,10 @@ class Data extends ChangeNotifier {
return _cells[0][0].value;
}
int getCellValue(int col, int row) {
return _cells[row][col].value;
}
int get movesCount => _movesCount;
void updateMovesCount(int movesCount) {
_movesCount = movesCount;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment