* Get the amount of time remaining before the tile loop processes this tile. * @param t the house tile * @pre IsTileType(t, MP_HOUSE) * @return time remaining */
| 333 | * @return time remaining |
| 334 | */ |
| 335 | inline uint8_t GetHouseProcessingTime(Tile t) |
| 336 | { |
| 337 | assert(IsTileType(t, MP_HOUSE)); |
| 338 | return GB(t.m6(), 2, 6); |
| 339 | } |
| 340 | |
| 341 | /** |
| 342 | * Set the amount of time remaining before the tile loop processes this tile. |
no test coverage detected