| 553 | return b ? b->priorityAt(tilecoord) : -1; |
| 554 | } |
| 555 | bool setPriorityAt (DFCoord tilecoord, int32_t priority) |
| 556 | { |
| 557 | Block *b = BlockAtTile(tilecoord); |
| 558 | return b ? b->setPriorityAt(tilecoord, priority) : false; |
| 559 | } |
| 560 | |
| 561 | df::tile_occupancy occupancyAt (DFCoord tilecoord) |
| 562 | { |
no test coverage detected