| 548 | } |
| 549 | |
| 550 | int32_t priorityAt (DFCoord tilecoord) |
| 551 | { |
| 552 | Block *b = BlockAtTile(tilecoord); |
| 553 | return b ? b->priorityAt(tilecoord) : -1; |
| 554 | } |
| 555 | bool setPriorityAt (DFCoord tilecoord, int32_t priority) |
| 556 | { |
| 557 | Block *b = BlockAtTile(tilecoord); |
no test coverage detected