visibleDecorations method
Used to get visible "Decoration".
Implementation
@override
Iterable<GameDecoration> visibleDecorations() {
return _visibleComponents
.where((element) => (element is GameDecoration))
.cast();
}
Used to get visible "Decoration".
@override
Iterable<GameDecoration> visibleDecorations() {
return _visibleComponents
.where((element) => (element is GameDecoration))
.cast();
}