* Get the position of the lift on this animated house * @param t the tile * @return position, from 0 to 36 */
| 145 | * @return position, from 0 to 36 |
| 146 | */ |
| 147 | inline uint8_t GetLiftPosition(Tile t) |
| 148 | { |
| 149 | return GB(t.m6(), 2, 6); |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * Set the position of the lift on this animated house |
no test coverage detected