Check if the base layer tile is a vein
| 151 | } |
| 152 | /// Check if the base layer tile is a vein |
| 153 | bool isVeinAt(df::coord2d p) |
| 154 | { |
| 155 | using namespace df::enums::tiletype_material; |
| 156 | auto tm = tileMaterial(baseTiletypeAt(p)); |
| 157 | return tm == MINERAL; |
| 158 | } |
| 159 | /// Check if the base layer tile is layer stone or soil |
| 160 | bool isLayerAt(df::coord2d p) |
| 161 | { |
nothing calls this directly
no test coverage detected