bubbletwist/lib/game/stone/triggerable_special_stone.dart

15 lines
358 B
Dart
Raw Normal View History

2024-06-19 23:40:31 +02:00
import 'package:bubbletwist/game/stone/special_stone.dart';
import 'package:bubbletwist/game/stone/stone_location.dart';
abstract class TriggerableSpecialStone extends SpecialStone {
late int row;
late int column;
TriggerableSpecialStone(super.board);
void setActivationLocation(StoneLocation sl) {
row = sl.row;
column = sl.column;
}
}