* Get the already activated triggers bits for this house. * This is required for newgrf house * @param t the tile of this house * @pre IsTileType(t, MP_HOUSE) * @return triggers */
| 321 | * @return triggers |
| 322 | */ |
| 323 | inline HouseRandomTriggers GetHouseRandomTriggers(Tile t) |
| 324 | { |
| 325 | assert(IsTileType(t, MP_HOUSE)); |
| 326 | return static_cast<HouseRandomTriggers>(GB(t.m3(), 0, 5)); |
| 327 | } |
| 328 | |
| 329 | /** |
| 330 | * Get the amount of time remaining before the tile loop processes this tile. |
no test coverage detected