| 484 | } |
| 485 | |
| 486 | df::tiletype tiletypeAt (DFCoord tilecoord) |
| 487 | { |
| 488 | Block *b = BlockAtTile(tilecoord); |
| 489 | return b ? b->tiletypeAt(tilecoord) : tiletype::Void; |
| 490 | } |
| 491 | bool setTiletypeAt (DFCoord tilecoord, df::tiletype tt, bool force = false) |
| 492 | { |
| 493 | Block *b = BlockAtTile(tilecoord); |
nothing calls this directly
no test coverage detected