tileTypeBelow method
Method that checks what type map tile is currently
Implementation
String? tileTypeBelow() {
final list = tileTypeListBelow();
if (list.isNotEmpty) {
return list.first;
}
return null;
}
Method that checks what type map tile is currently
String? tileTypeBelow() {
final list = tileTypeListBelow();
if (list.isNotEmpty) {
return list.first;
}
return null;
}