/// Simple structure that stores two ints to locate a stone on the board. class StoneLocation { int row; int column; StoneLocation({ required this.row, required this.column, }); }