bubbletwist/lib/game/stone/stone_location.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,
});
}