* Set the amount of time remaining before the tile loop processes this tile. * @param t the house tile * @param time the time to be set * @pre IsTileType(t, MP_HOUSE) */
| 345 | * @pre IsTileType(t, MP_HOUSE) |
| 346 | */ |
| 347 | inline void SetHouseProcessingTime(Tile t, uint8_t time) |
| 348 | { |
| 349 | assert(IsTileType(t, MP_HOUSE)); |
| 350 | SB(t.m6(), 2, 6, time); |
| 351 | } |
| 352 | |
| 353 | /** |
| 354 | * Decrease the amount of time remaining before the tile loop processes this tile. |
no test coverage detected