11 lines
197 B
Dart
11 lines
197 B
Dart
|
/// 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,
|
||
|
});
|
||
|
}
|