* Get the random bits for this house. * This is required for newgrf house * @param t the tile of this house * @pre IsTileType(t, MP_HOUSE) * @return random bits */
| 295 | * @return random bits |
| 296 | */ |
| 297 | inline uint8_t GetHouseRandomBits(Tile t) |
| 298 | { |
| 299 | assert(IsTileType(t, MP_HOUSE)); |
| 300 | return t.m1(); |
| 301 | } |
| 302 | |
| 303 | /** |
| 304 | * Set the activated triggers bits for this house. |
no test coverage detected