* Get the current destination for this lift * @param t the tile * @return destination */
| 124 | * @return destination |
| 125 | */ |
| 126 | inline uint8_t GetLiftDestination(Tile t) |
| 127 | { |
| 128 | return GB(t.m7(), 1, 3); |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * Stop the lift of this animated house from moving. |
no test coverage detected