| 226 | return baseMaterialAt(p); |
| 227 | } |
| 228 | bool hasConstructionAt(df::coord2d p) |
| 229 | { |
| 230 | if (!tiles) init_tiles(); |
| 231 | return tiles->con_info && |
| 232 | tiles->con_info->constructed.getassignment(p); |
| 233 | } |
| 234 | |
| 235 | df::tiletype tiletypeAt(df::coord2d p); |
| 236 | bool setTiletypeAt(df::coord2d, df::tiletype tt, bool force = false); |
nothing calls this directly
no test coverage detected