* Check if the lift of this animated house has a destination * @param t the tile * @return has destination */
| 102 | * @return has destination |
| 103 | */ |
| 104 | inline bool LiftHasDestination(Tile t) |
| 105 | { |
| 106 | return HasBit(t.m7(), 0); |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Set the new destination of the lift for this animated house, and activate |
no test coverage detected